@sinet/container-status
v2.0.0
Published
Simple way to provide the status of a container
Downloads
7
Readme
Container Status
A simple package to determine the status of a container. It provides the following type of data:
{
'commit' : 'a208c3b11a89b89eb1018f37d37c22a725024b46',
'uptime' : 103.558,
'hostname' : 'hostname',
'totalmem' : 17179869184,
'freemem' : 225099776,
'loadavg' : [ 2.40087890625, 2.50927734375, 2.65625 ]
}
Usage
npm install @sinet/container-status --save
Example
var Status = require( '@sinet/container-status' );
var status = new Status();
console.log( "status:", status );
setTimeout(function () {
console.log( "status:", status );
}, 2000);
Contributing
All pull requests must follow coding conventions and standards.