Interface MonitoringService

A simplified service object.

Example

{
* "host": "nnas",
* "name": "apt",
* "output": "APT OK: 0 packages available for upgrade (0 critical updates).",
* "state": 0
* }
interface MonitoringService {
    host: string;
    name: string;
    output: string;
    state: ServiceState;
}

Properties

Properties

host: string

Example

"nnas"
name: string

Example

"apt"
output: string

Example

"APT OK: 0 packages available for upgrade (0 critical updates)."

Example

0