hapi-health
v1.3.1
Published
Server monitoring
Downloads
254
Readme
hapi-healthcheck
server monitoring
Options:
token
- Optional token to secure the endpoint.endpoint
- Route to use. Defaults to/health
checks
- array objects for each check.name
- Name of the check, used as the key in the response json.method
- server method to call. Will be called asasync method(request, options)
. Function should return json.options
- optional data to pass to the method.
Example output:
{
"host": "sorrynotsorry.local",
"env": "test",
"uptime": 0,
"cpu": { "user": 384085, "system": 48978 },
"memory": {
"rss": 47497216,
"heapTotal": 32874496,
"heapUsed": 18066608,
"external": 518509
},
"customCheck": { "test": 1 }
}