You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a client check which depends on a plugin. To install it on the client, i pass it to the 'plugins' property of sensu, like:
class { 'sensu':
...
plugins => [
'puppet:///modules/profile/.../sensu/plugins/processes/check-procs.sh',
],
..
}
However this causes the first run of the check to fail, because the checks and sensu-client service are enabled in the puppet module before the plugins are installed:
sh: /etc/sensu/plugins/check-procs.sh: No such file or directory
To fix, the plugins should be installed before the service + checks/subscriptions are created.
The text was updated successfully, but these errors were encountered:
I have a client check which depends on a plugin. To install it on the client, i pass it to the 'plugins' property of sensu, like:
class { 'sensu':
...
plugins => [
'puppet:///modules/profile/.../sensu/plugins/processes/check-procs.sh',
],
..
}
However this causes the first run of the check to fail, because the checks and sensu-client service are enabled in the puppet module before the plugins are installed:
sh: /etc/sensu/plugins/check-procs.sh: No such file or directory
To fix, the plugins should be installed before the service + checks/subscriptions are created.
The text was updated successfully, but these errors were encountered: