blob: b755f54bd3165f1c106d3520fc5d8b45c78c3f80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
graylog-sidecar (is a lightweight configuration management system)
Graylog Sidecar is a lightweight configuration management system for
different log collectors, also called Backends. The Graylog node(s)
acts as a centralized hub containing the configurations of log
collectors. On supported message-producing devices/hosts, Sidecar
can run as a service (Windows host) or daemon (Linux host).
https://go2docs.graylog.org/5-0/getting_in_log_data/graylog_sidecar.html
Add this to /etc/rc.d/rc.local:
if [ -x /etc/rc.d/rc.graylog-sidecar ]; then
/etc/rc.d/rc.graylog-sidecar start
fi
Add this to /etc/rc.d/rc.local_shutdown
if [ -x /etc/rc.d/rc.graylog-sidecar ]; then
/etc/rc.d/rc.graylog-sidecar stop
fi
|