-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
74 lines (73 loc) · 1.23 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"rabbitmq": {
"host": "localhost",
"port": 5672,
"user": "sensu",
"password": "sensu",
"vhost": "/sensu"
},
"redis": {
"host": "localhost",
"port": 6379
},
"api": {
"host": "localhost",
"port": 4567,
"user": "sensu",
"password": "sensu"
},
"handlers": {
"default": {
"type": "set",
"handlers": [
"stdout","email"
]
},
"stdout": {
"type": "pipe",
"command": "cat"
}
},
"checks": {
"test": {
"command": "echo -n OK",
"subscribers": [
"test", "webservers"
],
"interval": 60
},
"chef_client": {
"command": "check-chef-client.rb",
"subscribers": [
"test", "webservers"
],
"interval": 60
},
"check_esx": {
"command": "check-esx-services.rb",
"subscribers": [
"test", "webservers", "esxi"
],
"interval": 60
}
},
"client": {
"name": "jasmine",
"address": "127.0.0.1",
"subscriptions": [
"test", "webservers"
],
"name": "esxi",
"address": "10.10.10.101",
"keepalive": {
"thresholds": {
"warning": 60,
"critical": 120
},
"handler": "keepalive"
},
"subscriptions": [
"esxi"
]
}
}