mirror of https://github.com/Icinga/icinga2.git
24 lines
355 B
Plaintext
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;
|
|
};
|
|
|
|
}
|