joyent-portal/frontend/etc/containerpilot.json

34 lines
683 B
JSON
Raw Normal View History

2016-10-20 15:36:24 +03:00
{
"consul": "{{ .CONSUL }}:8500",
"services": [
{
"name": "joyent-portal-frontend",
2016-10-20 15:36:24 +03:00
"port": 8000,
"health": "/usr/bin/curl -o /dev/null --fail -s http://localhost:8000/",
"poll": 3,
"ttl": 10
}
],
"backends": [
2017-01-25 17:49:05 +02:00
],
"telemetry": {
"port": 9090,
"sensors": [
{
"name": "frontend_memory_percent",
"help": "percentage of memory used",
"type": "gauge",
"poll": 5,
"check": ["/bin/sensor", "memory"]
},
{
"name": "frontend_cpu_load",
"help": "cpu load",
"type": "gauge",
"poll": 5,
"check": ["/bin/sensor", "cpu"]
}
]
}
2016-10-20 15:36:24 +03:00
}