1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# A monitoring system
Nagios is much-maligned, but pretty much has the most solid design of a monitoring system I have seen:
* Nagios is stable because it is old and focused.
* Implementing most functionality by launching customizable processes with an argument API makes Nagios very flexible.
* Configuration as a text file is the best approach.
However, Nagios has some problems:
* The user interface is bad, although there are nicer alternative user interfaces.
* Metrics collection is an afterthought, and the default implementation is not good.
* Although Nagios configuration has macros and other features to make the configuration somewhat declarative, it is insufficient and in most complex configurations, using a program to generate the configuration is necessary. Command definition is clunky.
* The host/service distinction is likely unnecessary, only dependencies are needed.
* The API for commands is a bit clunky and error-prone. (Generating perfdata and status lines is not straightforward. Return code as command status is error-prone to implement in most programming languages.)
I think this can be improved by:
* Instead of providing a user interface, provide an API as a first-class citizen.
* Do not implement metrics. Metrics collection is better implemented separately. Probably you could implement checks that alert over data in the metrics system.
* Make the configuration a JSON-like format that can be generated easily.
* Only implement checks, dependencies and alerting rules.
* Use JSON output as the main API for commands.
## Check API
Check plugins should output a JSON blob through stdout.
The output looks like:
```
{
"status": "OK"|"WARNING"|"CRITICAL"|"UNKNOWN",
"description": "free text here",
"extra": {any JSON value here}
}
```
If the process return code is not 0, then the status is equivalent to:
```
{
"status": "UNKNOWN",
"description": "command {command} exited with return code {return code}\n\nstdout:\n\n{stdout truncated to a reasonable size}\n\nstderr:\n\n{stderr truncated to a reasonable size}",
"extra": {
"return-code": "{return-code}",
"stdout": "{stdout truncated to a reasonable size}",
"stderr": "{stderr truncated to a reasonable size}"
}
}
```
An adapter executable can be provided to adapt Nagios plugins to the new API.
## Configuration
```
{
"checks": [
{
"id": "{string}",
"command": ["/full/path/to/check", "arg1", "arg2", "arg3"],
"requires": [
{"check-id": "{check-id}", "in-last-seconds": "{seconds}"},
...
]
"period-seconds": "{period seconds}"
},
...
]
}
## TODOs
* Alerting can possibly be a user interface based on the API (!)
* Are passive checks with liveness useful? Perhaps they overlap a bit with metrics-based alerting, which I would implement as a separate system.
|