commands – config show
Show the details of a configuration variable.
Usage
config show name change
where
name | of the configuration variable whose details to show. |
change | id of configuration variable as listed by config changes, or relative change index. |
read on /_beyondcron/configuration
Examples
Show details of a system/default configuration variable
BeyondCron % config show beyondcron.echo.command
----------- ------------------------------------------------------- Name beyondcron.echo.command Description Command used by bc-agent when executing an echo command job. Default /opt/bc-agent/bin/echo
Show details of a secret system configuration variable
BeyondCron % config show jdbc.password
------ ------------- Name jdbc.password Value Secret! Secret
As seen by a user without write access to /_beyondcron/configuration
BeyondCron % config show jdbc.password
------ ------------- Name jdbc.password Value ******** Secret
Show details of a customised configuration variable
BeyondCron % config show beyondcron.echo.url
----------- ------------------------------------------------------- Name beyondcron.echo.url Description URL used by bc-agent when executing a echo webhook job. Default http://localhost:8080/echo Value http://localhost:8080/offline/echo
Show details of a user configuration variable
BeyondCron % config show Hello
----- ----- Name Hello Value world
Show details of an earlier version of a configuration variable
BeyondCron % config changes Hello
Time Change Action User Host -------------- -------- -- ------- ----- ---------------- 17:15:10 today 827c2ee2 0 Updated admin demo.example.com 17:15:04 today 68b9d060 -1 Updated admin demo.example.com 11:21:42 today 7ba5840c -2 Created admin demo.example.com
BeyondCron % config show Hello 68b9d060
------- ----- Name Hello Value John
Show details of a custom configuration variable using a relative change index
Versions of a configuration variable can also be referenced using their relative change index, with 0 being the current version, -1 being the previous version, etc…
BeyondCron % config show beyondcron.echo.url -1
------- ----- Name Hello Value John