mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-31 01:24:19 +02:00
15 lines
263 B
Plaintext
15 lines
263 B
Plaintext
#include "base/dynamicobject.hpp"
|
|
#include "base/application.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class CheckResultReader : DynamicObject
|
|
{
|
|
[config] String spool_dir {
|
|
default {{{ return Application::GetLocalStateDir() + "/lib/icinga2/spool/checkresults/"; }}}
|
|
};
|
|
};
|
|
|
|
}
|