]> granicus.if.org Git - icinga2/blob - doc/3.14-check-result-files.md
Remove the 'Icinga' prefix for global constants.
[icinga2] / doc / 3.14-check-result-files.md
1 ## <a id="check-result-files"></a> Check Result Files
2
3 Icinga 1.x writes its check result files into a temporary spool directory
4 where it reads these check result files in a regular interval from.
5 While this is extremly inefficient in performance regards it has been
6 rendered useful for passing passive check results directly into Icinga 1.x
7 skipping the external command pipe.
8
9 Several clustered/distributed environments and check-aggregation addons
10 use that method. In order to support step-by-step migration of these
11 environments, Icinga 2 ships the `CheckResultReader` object.
12
13 There is no feature configuration available, but it must be defined
14 on-demand in your Icinga 2 objects configuration.
15
16     object CheckResultReader "reader" {
17       spool_dir = "/data/check-results"
18     }