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,
|
|
];
|