summaryrefslogtreecommitdiffstats
path: root/system/netdata-freebsd.in
blob: fd544c86c5a4e9414ffbb5f0e917ddbf9341b92d (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
43
44
45
46
47
48
49
50
51
52
53
#!/bin/sh
# SPDX-License-Identifier: GPL-3.0-or-later

. /etc/rc.subr

name=netdata
rcvar=netdata_enable

piddir="@localstatedir_POST@/run/netdata"
pidfile="${piddir}/netdata.pid"

command="@sbindir_POST@/netdata"
command_args="-P ${pidfile}"

required_files="@configdir_POST@/netdata.conf"

start_precmd="netdata_prestart"
stop_postcmd="netdata_poststop"

extra_commands="reloadhealth savedb"

reloadhealth_cmd="netdata_reloadhealth"
savedb_cmd="netdata_savedb"

netdata_prestart()
{
	[ ! -d "${piddir}" ] && mkdir -p "${piddir}"
	chown @netdata_user_POST@:@netdata_user_POST@ "${piddir}"
	return 0
}

netdata_poststop()
{
	[ -f "${pidfile}" ] && rm "${pidfile}"
	return 0
}

netdata_reloadhealth()
{
    p=`cat ${pidfile}`
    kill -USR2 ${p} && echo "Sent USR2 (reload health) to pid ${p}"
    return 0
}

netdata_savedb()
{
    p=`cat ${pidfile}`
    kill -USR2 ${p} && echo "Sent USR1 (save db) to pid ${p}"
    return 0
}

load_rc_config $name
run_rc_command "$1"