Difference between revisions of "Mesh/Sensu Page"
Jump to navigation
Jump to search
(→Issues) |
|||
Line 84: | Line 84: | ||
=== Installing Sensu on dev exit node === | === Installing Sensu on dev exit node === | ||
Trying to get the sensu client install on the dev exit node, exit1. | Trying to get the sensu client install on the dev exit node, exit1.sudomesh.org (192.157.221.200). Could not successfully run these commands as sudo: | ||
notes from this page: http://sensuapp.org/docs/0.12/packages | notes from this page: http://sensuapp.org/docs/0.12/packages |
Revision as of 09:17, 25 July 2014
See Also: Monitoring
Installed on small frame Dell PC.
- Debian
- 192.168.42.65
- monitor
- user sudoroom:sudomesh
Config Files
api.json
{ "api": { "host": "localhost", "port": 4567, "user": "admin", "password": "secret" } }
dashboard.json
{ "dashboard": { "port": 8080, "user": "admin", "password": "secret" } }
rabbitmq.json
{ "rabbitmq": { "ssl": { "cert_chain_file": "/etc/sensu/ssl/cert.pem", "private_key_file": "/etc/sensu/ssl/key.pem" }, "host": "monitor", "port": 5671, "vhost": "/sensu", "user": "sensu", "password": "secret" } }
client.json
{ "client": { "name": "monitor", "address": "192.168.42.65", "subscriptions": [ "all","webservers" ] } }
server.json
oops...
check_cron.json
{ "checks": { "cron_check": { "handlers": ["default"], "command": "/etc/sensu/plugins/check-procs.rb -p crond -C 1 ", "interval": 60, "subscribers": [ "webservers" ] } } }
Issues
Installing Sensu on dev exit node
Trying to get the sensu client install on the dev exit node, exit1.sudomesh.org (192.157.221.200). Could not successfully run these commands as sudo:
notes from this page: http://sensuapp.org/docs/0.12/packages
wget -q http://repos.sensuapp.org/apt/pubkey.gpg -O- | sudo apt-key add - echo "deb http://repos.sensuapp.org/apt sensu main" > /etc/apt/sources.list.d/sensu.list apt-get update apt-get install sensu