@sinet/container-status

Simple way to provide the status of a container

Usage no npm install needed!

<script type="module">
  import sinetContainerStatus from 'https://cdn.skypack.dev/@sinet/container-status';
</script>

README

Container Status

Build Status Dependency Status devDependency 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.