bundlewrap/bundles/monitored/metadata.py
mwiegand 9c26233321 wip
2022-08-18 01:41:32 +02:00

25 lines
544 B
Python

defaults = {
'monitoring': {
'services': {
'test': {
'vars.command': '/bin/ls /',
'check_command': 'sshmon',
'host_name': node.name,
},
},
},
}
@metadata_reactor.provides(
'users/sshmon/authorized_users'
)
def user(metadata):
return {
'users': {
'sshmon': {
'authorized_users': {
'nagios@' + metadata.get('monitoring/icinga2_node'),
}
},
},
}