Socket
Book a DemoInstallSign in
Socket

uptime-robot

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uptime-robot

A simple node.js API for uptime robot

latest
Source
npmnpm
Version
1.3.0
Version published
Maintainers
1
Created
Source

Uptime Robot

A simple node.js and browserify API for uptime robot

$ npm install uptime-robot

Currently, only some methods are implemented, but pull requests for the missing ones are welcome.

This library works in the browser using browserify. You can see a demo by cloning this repo and running npm run test-browser.

All methods also return a Promise if no callback is provided.

Example

var Client = require('uptime-robot');
var cl = new Client('api-key');
cl.getMonitors({customUptimeRatio: [1, 7, 30]}, function (err, res) {
  if (err) throw err;
  console.dir(res);
});

API

cl.getMonitors(options, fn(err, monitors))

options:

cl.newMonitor(options, fn(err))

options:

  • friendlyName - required
  • url - required
  • type - required (Default: 1)
  • subType - optional (required for port monitoring)
  • port - optional (required for port monitoring)
  • keywordType - optional (required for keyword monitoring)
  • keywordValue - optional (required for keyword monitoring)
  • httpUsername - optional
  • httpPassword - optional
  • alertContacts - optional (array of alert contact ids)
  • interval - optional (in minutes)

cl.editMonitor(options, fn(err))

options:

  • monitorID - required
  • friendlyName - optional
  • url - optional
  • subType - optional (used only for port monitoring)
  • port - optional (used only for port monitoring)
  • keywordType - optional (used only for keyword monitoring)
  • keywordValue - optional (used only for keyword monitoring)
  • httpUsername - optional
  • httpPassword - optional
  • alertContacts - optional (array of alert contact ids)
  • interval - optional (in minutes)

cl.deleteMonitor(id, fn(err))

options:

  • monitorID - required

cl.resetMonitor(id, fn(err))

options:

  • monitorID - required

cl.getAlertContacts(options, fn(err, alertContacts))

options:

  • alertContacts - optional (array of alert contact ids)
  • offset - optional (record to start paginating. Default: 0)
  • limit - optional (number of records to return. Default and max: 50)

cl.getAllAlertContactIds(fn(err, alertContacts))

  • alertContacts: array of all alert contact ids

License

MIT

FAQs

Package last updated on 28 Jan 2017

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