summaryrefslogtreecommitdiffstats
path: root/lib/livestatus/livestatuslistener.ti
blob: 31482cff185135ae43b46ff27d719d94834327c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */

#include "base/configobject.hpp"
#include "base/application.hpp"

library livestatus;

namespace icinga
{

class LivestatusListener : ConfigObject {
	activation_priority 100;

	[config] String socket_type {
		default {{{ return "unix"; }}}
	};
	[config] String socket_path {
		default {{{ return Configuration::InitRunDir + "/cmd/livestatus"; }}}
	};
	[config] String bind_host {
		default {{{ return "127.0.0.1"; }}}
	};
	[config] String bind_port {
		default {{{ return "6558"; }}}
	};
	[config] String compat_log_path {
		default {{{ return Configuration::LogDir + "/compat"; }}}
	};
};

}