New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

monit

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

monit

Node interface for Monit

latest
Source
npmnpm
Version
0.1.2
Version published
Maintainers
1
Created
Source

monit

npm version Build Status Coverage Status Dependencies Status

The monit module provides a Node interface to interact with Monit management utility.

Instalation

npm install monit

Usage

Client

The Client class allows you to make requests to the Monit instance.

var Client = require('monit').Client;

var client = new Client({
  hostname: 'monit.myapp.com',
  username: 'admin',
  password: 'monit'
});

Options available

NameDefaultDescription
hostname'localhost'The host serving the Monit instance
port2812The port used to serve the Monit port
sslfalseWheter monit web is being served under SSL
usernamenullUsername to be used on authentication
passwordnullPassword to be used on authentication

Client.status

Retrieves the current status data from the Monit instance.

client.status()
  .then(function(result) {
    console.log(result.monit.server[0].localhostname);
  }).catch(function(err) {
    throw err;
  });

Client.action

Allows you to perform one of the Monit supported actions on a service. The supported actions are 'start', 'stop', 'restart', 'monitor' and 'unmonitor'. Both options service and action are required.

client.action({
  service: 'nginx',
  action: 'monitor'
}).then(function(response) {
  console.log('nginx monitoring was enabled!');
}).catch(function(err) {
  throw err;
});

MIT Licensed

See the LICENSE file for details.

Adones Cunha

Keywords

monit

FAQs

Package last updated on 24 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts