mirror of
https://github.com/openwrt/packages.git
synced 2025-12-23 08:04:32 +04:00
Even on a powerful platform a collectd process'
activities are sometimes affecting throoughput and
latency. This is a backgroud process, that should not
be running with default priority.
Even if it is a little deplayed, that is not a worry in
this case. The routing should be the main priority,
stats collection can wait a bit.
Tested on Netgear R7800
Signed-off-by: Marc Benoit <marcb62185@gmail.com>
Make niceness more moderate, bump version.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
(cherry picked from commit b33ec70c95)
18 lines
287 B
Bash
18 lines
287 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006-2016 OpenWrt.org
|
|
|
|
START=80
|
|
STOP=10
|
|
|
|
USE_PROCD=1
|
|
NICEPRIO=5
|
|
|
|
start_service() {
|
|
mkdir -m 0755 -p /var/lib/collectd
|
|
procd_open_instance
|
|
procd_set_param command /usr/sbin/collectd -f
|
|
procd_set_param nice "$NICEPRIO"
|
|
procd_close_instance
|
|
}
|
|
|