mirror of
https://github.com/Icinga/icinga2.git
synced 2026-07-15 11:51:07 -04:00
54 lines
992 B
Text
54 lines
992 B
Text
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "base/configobject.hpp"
|
|
|
|
library perfdata;
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class OpenTsdbWriter : ConfigObject
|
|
{
|
|
activation_priority 100;
|
|
|
|
[config] String host {
|
|
default {{{ return "127.0.0.1"; }}}
|
|
};
|
|
[config] String port {
|
|
default {{{ return "4242"; }}}
|
|
};
|
|
[config] bool enable_ha {
|
|
default {{{ return false; }}}
|
|
};
|
|
[config] Dictionary::Ptr host_template {
|
|
default {{{ return new Dictionary(); }}}
|
|
|
|
};
|
|
[config] Dictionary::Ptr service_template {
|
|
default {{{ return new Dictionary(); }}}
|
|
};
|
|
[config] bool enable_generic_metrics {
|
|
default {{{ return false; }}}
|
|
};
|
|
[config] double disconnect_timeout {
|
|
default {{{ return 10; }}}
|
|
};
|
|
};
|
|
|
|
validator OpenTsdbWriter {
|
|
Dictionary host_template {
|
|
String metric;
|
|
Dictionary "tags" {
|
|
String "*";
|
|
};
|
|
};
|
|
Dictionary service_template {
|
|
String metric;
|
|
Dictionary "tags" {
|
|
String "*";
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|