aboutsummaryrefslogtreecommitdiffstats
path: root/testing/metricbeat/metricbeat.initd
blob: 989afe6908a0a3c1ee4360d239dc921fc64ebb76 (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
32
33
34
35
36
37
38
39
40
41
42
#!/sbin/openrc-run

METRICBEAT_LOG_FILE="/var/log/${SVCNAME}.log"

name=metricbeat
description="MetricBeat - Lightweight shipper for system and service statistics"
description_checkconfig="Verify configuration file"
daemon=/usr/bin/$name
extra_commands="checkconfig"

start_pre() {
	checkpath -f -m 0644 "$METRICBEAT_LOG_FILE"
}

depend() {
	need net
	after firewall
}

checkconfig() {
	metricbeat -configtest -c /etc/metricbeat/metricbeat.yml
}

start() {
	checkconfig || return 1

ebegin "Starting ${name}"
	start-stop-daemon --start --quiet \
		-m --pidfile /var/run/${name}.pid \
		-b --stdout $METRICBEAT_LOG_FILE --stderr $METRICBEAT_LOG_FILE \
		--exec ${daemon} -- ${metricbeat_opts}
	eend $?
}

stop() {
	ebegin "Stopping ${name}"
	start-stop-daemon --stop --quiet \
		--pidfile /var/run/${name}.pid \
		--exec ${daemon}
	eend $?
}