Last active
August 29, 2015 14:01
-
-
Save halcyonardency/f9c9c50bca58f6928d9f to your computer and use it in GitHub Desktop.
Sensu Client Skeleton
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
XXHN - FQDN | |
XXSHORTHN - Short Hostname | |
XXIP - Management IP | |
XXRMQHN - RabbitMQ Hostname | |
XXPORT - RabbitMQ Port | |
XXUSER - Sensu Username (RabbitMQ) | |
XXPASS - Sensu Password (RabbitMQ) | |
XXVHOST - Sensu Vhost (RabbitMQ) | |
XXAPIHOST - Sensu API Host | |
XXAPIPORT - Sensu API Port |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ "api": { | |
"host": "XXAPIHOST", | |
"port": XXAPIPORT | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"client": { | |
"name": "XXHN", | |
"address": "XXIP", | |
"subscriptions": [ | |
"linuxhost", | |
"XXSHORTHN" | |
], | |
"safe_mode": false | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"rabbitmq": { | |
"ssl": { | |
"private_key_file": "/etc/sensu/ssl/key.pem", | |
"cert_chain_file": "/etc/sensu/ssl/cert.pem" | |
}, | |
"port": XXPORT, | |
"host": "XXRMQHN", | |
"user": "XXUSER", | |
"password": "XXPASS", | |
"vhost": "/XXVHOST" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment