icinga2/lib/icingadb/icingadb.ti

24 lines
355 B
Plaintext

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "base/configobject.hpp"
library icingadb;
namespace icinga
{
class IcingaDB : ConfigObject
{
[config] String host {
default {{{ return "127.0.0.1"; }}}
};
[config] int port {
default {{{ return 6380; }}}
};
[config] String path;
[config] String password;
[config] int db_index;
};
}