mirror of
https://github.com/Icinga/icinga2.git
synced 2025-05-16 12:30:18 +02:00
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/"; }}}
|
|
};
|
|
};
|
|
|
|
}
|