Filip Pytloun | 818f5e1 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 1 | |
| 2 | ===== |
| 3 | Sensu |
| 4 | ===== |
| 5 | |
| 6 | Sample pillars |
| 7 | ============== |
| 8 | |
| 9 | Sensu Server with API |
| 10 | |
| 11 | .. code-block:: yaml |
| 12 | |
| 13 | sensu: |
| 14 | server: |
| 15 | enabled: true |
| 16 | keepalive_warning: 20 |
jan kaufman | 2af39ed | 2016-02-25 11:02:19 +0100 | [diff] [blame] | 17 | keepalive_critical: 60 |
Filip Pytloun | 818f5e1 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 18 | mine_checks: true |
| 19 | database: |
| 20 | engine: redis |
| 21 | host: localhost |
| 22 | port: 6379 |
| 23 | message_queue: |
| 24 | engine: rabbitmq |
| 25 | host: rabbitmq |
| 26 | port: 5672 |
| 27 | user: monitor |
| 28 | password: pwd |
| 29 | virtual_host: '/monitor' |
| 30 | bind: |
| 31 | address: 0.0.0.0 |
| 32 | port: 4567 |
| 33 | handler: |
| 34 | default: |
| 35 | enabled: true |
| 36 | set: |
| 37 | - mail |
jan kaufman | 2af39ed | 2016-02-25 11:02:19 +0100 | [diff] [blame] | 38 | - pipe |
Filip Pytloun | 818f5e1 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 39 | stdout: |
| 40 | enabled: true |
| 41 | mail: |
| 42 | mail_to: 'mail@domain.cz' |
| 43 | host: smtp1.domain.cz |
| 44 | port: 465 |
| 45 | user: 'mail@domain.cz' |
| 46 | password: 'pwd' |
| 47 | authentication: cram_md5 |
| 48 | encryption: ssl |
| 49 | domain: 'domain.cz' |
jan kaufman | 2af39ed | 2016-02-25 11:02:19 +0100 | [diff] [blame] | 50 | pipe: |
| 51 | enabled: true |
| 52 | command: /usr/bin/tee /tmp/debug |
Filip Pytloun | 818f5e1 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 53 | |
| 54 | Sensu Dashboard (now uchiwa) |
| 55 | |
| 56 | .. code-block:: yaml |
| 57 | |
| 58 | sensu: |
| 59 | dashboard: |
| 60 | enabled: true |
| 61 | bind: |
| 62 | address: 0.0.0.0 |
| 63 | port: 8080 |
| 64 | admin: |
| 65 | username: admin |
| 66 | password: pass |
| 67 | |
| 68 | Sensu Client |
| 69 | |
| 70 | .. code-block:: yaml |
| 71 | |
| 72 | sensu: |
| 73 | client: |
| 74 | enabled: true |
| 75 | message_queue: |
| 76 | engine: rabbitmq |
| 77 | host: rabbitmq |
| 78 | port: 5672 |
| 79 | user: monitor |
| 80 | password: pwd |
| 81 | virtual_host: '/monitor' |
| 82 | |
Adam Tengler | a143f36 | 2016-10-31 19:40:35 +0100 | [diff] [blame] | 83 | Sensu Client with check explicitly disabled |
| 84 | |
| 85 | .. code-block:: yaml |
| 86 | |
| 87 | sensu: |
| 88 | client: |
| 89 | enabled: true |
| 90 | message_queue: |
| 91 | engine: rabbitmq |
| 92 | host: rabbitmq |
| 93 | port: 5672 |
| 94 | user: monitor |
| 95 | password: pwd |
| 96 | virtual_host: '/monitor' |
| 97 | check: |
| 98 | local_linux_storage_swap_usage: |
| 99 | enabled: False |
| 100 | |
Guillaume Thouvenin | 63423cf | 2017-03-02 10:29:33 +0100 | [diff] [blame] | 101 | Sensu Client with subscriptions explicitly disabled |
| 102 | |
| 103 | .. code-block:: yaml |
| 104 | |
| 105 | sensu: |
| 106 | client: |
| 107 | enabled: true |
| 108 | message_queue: |
| 109 | engine: rabbitmq |
| 110 | host: rabbitmq |
| 111 | port: 5672 |
| 112 | user: monitor |
| 113 | password: pwd |
| 114 | virtual_host: '/monitor' |
| 115 | unsubscribe: |
| 116 | - collectd.client |
| 117 | - git.client |
| 118 | |
Filip Pytloun | 818f5e1 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 119 | Sensu Client with community plugins |
| 120 | |
| 121 | .. code-block:: yaml |
| 122 | |
| 123 | sensu: |
| 124 | client: |
| 125 | enabled: true |
| 126 | plugin: |
| 127 | sensu_community_plugins: |
| 128 | enabled: true |
| 129 | monitoring_for_openstack: |
| 130 | enabled: true |
vmikes | 299f9af | 2016-09-06 16:04:22 +0200 | [diff] [blame] | 131 | ruby_gems: |
| 132 | enabled: True |
| 133 | name: |
| 134 | bunny: |
Filip Pytloun | 818f5e1 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 135 | message_queue: |
| 136 | engine: rabbitmq |
| 137 | host: rabbitmq |
| 138 | port: 5672 |
| 139 | user: monitor |
| 140 | password: pwd |
| 141 | virtual_host: '/monitor' |
| 142 | |
Jakub Pavlik | cca98e9 | 2016-09-06 18:08:22 +0200 | [diff] [blame] | 143 | Sensu SalesForce handler |
| 144 | |
| 145 | .. code-block:: yaml |
| 146 | |
| 147 | sensu: |
| 148 | server: |
| 149 | enabled: true |
| 150 | handler: |
| 151 | default: |
| 152 | enabled: true |
| 153 | set: |
| 154 | - sfdc |
| 155 | stdout: |
| 156 | enabled: true |
| 157 | sfdc: |
| 158 | enabled: true |
| 159 | sfdc_client_id: "3MVG9Oe7T3Ol0ea4MKj" |
| 160 | sfdc_client_secret: 11482216293059 |
| 161 | sfdc_username: test@test1.test |
| 162 | sfdc_password: passTemp |
| 163 | sfdc_auth_url: https://mysite--scloudqa.cs12.my.salesforce.com |
| 164 | environment: a2XV0000001 |
| 165 | sfdc_organization_id: 00DV00000 |
| 166 | |
Filip Pytloun | 818f5e1 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 167 | Read more |
| 168 | ========= |
| 169 | |
| 170 | * http://docs.sensuapp.org/0.9/installing_sensu.html |
| 171 | * https://speakerdeck.com/joemiller/practical-examples-with-sensu-monitoring-framework |
| 172 | * https://github.com/fridim/nagios-plugin-check_galera_cluster |
| 173 | * http://www.reimann.sh/2011/06/30/nagios-check-pacemaker-failed-actions/ |
| 174 | * http://sys4.de/en/blog/2014/01/23/montoring-pacemaker-nagios/ |
| 175 | * https://raw.githubusercontent.com/sensu/sensu-community-plugins/master/plugins/openstack/neutron/neutron-agent-status.py |
| 176 | * https://github.com/sensu/sensu-community-plugins/blob/master/plugins/openstack/keystone/check_keystone-api.sh |
| 177 | * http://openstack.prov12n.com/monitoring-openstack-nagios-3/ |
| 178 | * https://raw.githubusercontent.com/drewkerrigan/nagios-http-json/master/check_http_json.py |
| 179 | * https://github.com/opinkerfi/nagios-plugins/tree/master/check_ibm_bladecenter |
| 180 | * https://github.com/opinkerfi/nagios-plugins/tree/master/check_storwize |
| 181 | * https://github.com/ehazlett/sensu-py/ |
| 182 | * https://github.com/Level-Up/Supervisord-Nagios-Plugin/blob/master/check_supv.py |
Filip Pytloun | cf8a8f6 | 2017-02-02 13:02:03 +0100 | [diff] [blame] | 183 | |
| 184 | Documentation and Bugs |
| 185 | ====================== |
| 186 | |
| 187 | To learn how to install and update salt-formulas, consult the documentation |
| 188 | available online at: |
| 189 | |
| 190 | http://salt-formulas.readthedocs.io/ |
| 191 | |
| 192 | In the unfortunate event that bugs are discovered, they should be reported to |
| 193 | the appropriate issue tracker. Use Github issue tracker for specific salt |
| 194 | formula: |
| 195 | |
| 196 | https://github.com/salt-formulas/salt-formula-sensu/issues |
| 197 | |
| 198 | For feature requests, bug reports or blueprints affecting entire ecosystem, |
| 199 | use Launchpad salt-formulas project: |
| 200 | |
| 201 | https://launchpad.net/salt-formulas |
| 202 | |
| 203 | You can also join salt-formulas-users team and subscribe to mailing list: |
| 204 | |
| 205 | https://launchpad.net/~salt-formulas-users |
| 206 | |
| 207 | Developers wishing to work on the salt-formulas projects should always base |
| 208 | their work on master branch and submit pull request against specific formula. |
| 209 | |
| 210 | https://github.com/salt-formulas/salt-formula-sensu |
| 211 | |
| 212 | Any questions or feedback is always welcome so feel free to join our IRC |
| 213 | channel: |
| 214 | |
| 215 | #salt-formulas @ irc.freenode.net |