mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-25 06:16:26 +01:00
14 lines
225 B
Plaintext
14 lines
225 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
START=99
|
||
|
|
||
|
USE_PROCD=1
|
||
|
PROG="/usr/bin/node_exporter"
|
||
|
OPTIONS="--web.listen-address=:9100"
|
||
|
|
||
|
start_service() {
|
||
|
procd_open_instance
|
||
|
procd_set_param command "$PROG" "${OPTIONS}"
|
||
|
procd_close_instance
|
||
|
}
|