joyent-portal/cloudapi-graphql/etc/containerpilot.json

39 lines
942 B
JSON
Raw Normal View History

2016-10-17 18:41:17 +03:00
{
"consul": "{{ .CONSUL }}:8500",
"services": [{
"name": "joyent-portal-cloudapi-graphql",
"port": 4000,
"health": "/usr/bin/curl -o /dev/null --fail -s http://localhost:4000/graphql",
"poll": 3,
"ttl": 10
}],
2017-01-26 14:35:49 +02:00
"telemetry": {
"port": 9090,
"sensors": [{
"name": "graphql_memory_percent",
"help": "percentage of memory used",
"type": "gauge",
"poll": 5,
"check": ["/bin/sensors", "memory"]
}, {
"name": "graphql_cpu_load",
"help": "cpu load",
"type": "gauge",
"poll": 5,
"check": ["/bin/sensors", "cpu"]
}, {
"name": "graphql_disk_capacity",
"help": "disk capacity",
"type": "gauge",
"poll": 60,
"check": ["/bin/sensors", "diskcapacity"]
}, {
"name": "graphql_disk_usage",
"help": "disk usage",
"type": "gauge",
"poll": 60,
"check": ["/bin/sensors", "diskusage"]
}]
2017-01-26 14:35:49 +02:00
}
2016-10-17 18:41:17 +03:00
}