Datadog API Node.JS Client
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
271 B

module.exports.STATUSES = {
OK: 0,
WARNING: 1,
CRITICAL: 2,
UNKNOWN: 3,
};
module.exports.ALL_STATUSES = [
module.exports.STATUSES.OK,
module.exports.STATUSES.WARNING,
module.exports.STATUSES.CRITICAL,
module.exports.STATUSES.UNKNOWN,
];