mirror of
https://github.com/Icinga/icinga2.git
synced 2026-02-21 08:51:10 -05:00
16 lines
225 B
Text
16 lines
225 B
Text
#include "base/dynamicobject.h"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class GraphiteWriter : DynamicObject
|
|
{
|
|
[config] String host {
|
|
default {{{ return "127.0.0.1"; }}}
|
|
};
|
|
[config] String port {
|
|
default {{{ return "2003"; }}}
|
|
};
|
|
};
|
|
|
|
}
|