This is the repository for Node.js SDK of OpsGenie.
OpsGenie Node.js SDK aims to access OpsGenie Web API through HTTP calls from Node.js applications.
OpsGenie Node.js SDK covers:
- Alert API v2
- User API
- Group API
- Team API
- Escalation API (TODO: will be available soon)
- Schedule API (TODO: will be available soon)
- Schedule Override API (TODO: will be available soon)
- Forwarding Rule API (TODO: will be available soon)
- Heartbeat API (TODO: will be available soon)
- Integration API (TODO: will be available soon)
- Policy API (TODO: will be available soon)
Future releases are subject to be delivered for packing more APIs soon.
Node.js version >=0.6.x is required.
npm install opsgenie-sdk
var opsgenie = require("opsgenie-sdk");
opsgenie.configure({
api_key: "your_api_key",
});
var get_alert_identifier = {
identifier: "alert_id",
identifierType: "id",
};
opsgenie.alertV2.get(get_alert_identifier, function (error, alert) {
if (error) {
// handle error
} else {
console.log("Alert data received", alert);
}
});
More samples can be found under /samples
directory
Also, checkout "Node.js SDK page" for detailed documentation