Sfoglia il codice sorgente

add support for new check (#2)

* add support for new check

* use grains.fqdn and localhost

* use server.bind.port intead of default

* local check

* change subscriber to fqdn
tags/2016.12^0
Misak 8 anni fa
parent
commit
3365e58a17
4 ha cambiato i file con 24 aggiunte e 0 eliminazioni
  1. +2
    -0
      metadata/service/server/cluster.yml
  2. +2
    -0
      metadata/service/server/single.yml
  3. +11
    -0
      metadata/service/support.yml
  4. +9
    -0
      mongodb/meta/sensu.yml

+ 2
- 0
metadata/service/server/cluster.yml Vedi File

@@ -1,5 +1,7 @@
applications:
- mongodb
classes:
- service.mongodb.support
parameters:
_param:
mongodb_server_replica_set: default

+ 2
- 0
metadata/service/server/single.yml Vedi File

@@ -1,5 +1,7 @@
applications:
- mongodb
classes:
- service.mongodb.support
parameters:
mongodb:
server:

+ 11
- 0
metadata/service/support.yml Vedi File

@@ -0,0 +1,11 @@
parameters:
mongodb:
_support:
collectd:
enabled: false
heka:
enabled: false
sensu:
enabled: true
sphinx:
enabled: false

+ 9
- 0
mongodb/meta/sensu.yml Vedi File

@@ -0,0 +1,9 @@
{%- from "mongodb/map.jinja" import server with context -%}
{%- if server.bind.address == '0.0.0.0' %}{%- set address = '127.0.0.1' %}{% else %}{%- set address = server.bind.address %}{% endif %}
check:
local_mongodb_mdb_{{ grains.fqdn }}:
command: "PATH=$PATH:/etc/sensu/plugins check_mongodb.py -H {{ address }} -A connect -P {{ server.bind.port }}"
interval: 60
occurrences: 1
subscribers:
- {{ grains['fqdn']|replace('.', '-') }}

Loading…
Annulla
Salva