Configuration¶
cctl uses a config file. The locations differ from os. If the configuration file does not it exists, it becomes created.
- MacOS:
$HOME/Libarary/Application Support/camundactl/config.yml - Linux:
$HOME/.config/camundactl/config.yml - Windows:
$HOME/Appdata/Local/camundactl/config.yml
Fileformat¶
The configuration is stored in a yaml file.
version: beta1
extra_paths:
- module.to.my.plugin
extra_template_paths:
- /path/to/custom/templates
current_engine: localhost
log_level: DEBUG
engines:
- name: localhost
url: http://localhost:8080/engine-rest
auth:
user: camunda
password: camunda
- name: client-a
url: http://localhost:8080/engine-rest
auth:
user: camunda
password: camunda
- name: client-c
url: https://localhost:8080/engine-rest
verify: false
auth:
user: camunda
password: camunda
versiondefines the current config file version for later update purposeextra_pathsis a list of python modules that can be autodiscovered in command discovering to add user defined commands or pluginsextra_template_pathsis a list of paths to secifiy additionals template locations for the template outputcurrent_engineis the currently selected engine to be usedlog_leveldefines the level for application logging.enginecontains a list of engines within you can switch witchcctl config engines activate ANOTHER.namethe engines display nameurlthe urls of the camunda engine rest apiauthis an object ofuserandpasswordfor basic authenticationverifyis a boolen that ignores ssl verification (defaulttrue)
Engines¶
Add engine¶
Add a camunda engine to the list of engines and directly select it.
$ cctl config add-engine local http://localhost:8080/engine-rest --select
List all engines¶
List all engines that are configured. The * indicates the currently selected engine.
$ cctl config get-engines
local *
client-a
Activate engine¶
Activates the client-a engine.
$ cctl config activate-engine client-a
Remove engine¶
Removes the client-a engine.
$ cctl config remove-engine client-a
Logging¶
There are two options to configure logging for Camunda Ctrl:
Log Level via CLI/Config
Configuring a global log_level in the configuration file. This also can be provided via -l/--log-level. The following values are possible:
- DEBUG
- INFO
- WARNING
- ERROR
Complex configuration in config files
The other option for logging configuration is to provide a key logging. The format has to follow the python configration for dictConfig logging:
https://docs.python.org/3/library/logging.config.html#logging.config.dictConfig
Extra Paths¶
TODO
Alias¶
You can modify config file and add alias names for subcommand.
alias:
pi: processInstance
pis: processInstances
hpi: historicProcessInstance
hpis: historicProcessInstances
i: incident
is: incidents
deploy: deployment
desc: describe
g: get
Alias are configured for your installation and become applied for all engines.
Add alias¶
You can add extra alias for long commands as follows:
$ cctl config add-alias COMMAND ALIAS
Remove alias¶
To remove a alias you can use the following command:
$ cctl config remove-alias ALIAS
Remove alias¶
To see which alias are configured
$ cctl config get-alias
Alias Command
------- ----------------
pi processInstance
pis processInstances
Templates¶
The output handler template provides the functionality to render the returned
output to a given template. The result and some other variables are provided in
the template context.
Details about the template output handler can be found in the separate documentation.
The option extra_template_paths gives you the option to extend the loader
context and provide custom templates.
Templates are searched in the following order:
- Defaults provided by dictionary (
default,result-length) confg.extra_template_paths$CONFIG_DIR/templates