mirror of https://github.com/Icinga/icinga2.git
15 lines
259 B
Plaintext
15 lines
259 B
Plaintext
|
#include "base/dynamicobject.h"
|
||
|
#include "base/application.h"
|
||
|
|
||
|
namespace icinga
|
||
|
{
|
||
|
|
||
|
class CheckResultReader : DynamicObject
|
||
|
{
|
||
|
[config] String spool_dir {
|
||
|
default {{{ return Application::GetLocalStateDir() + "/lib/icinga2/spool/checkresults/"; }}}
|
||
|
};
|
||
|
};
|
||
|
|
||
|
}
|