Browse Source

utils/collectd: run with low priority

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>
lilik-openwrt-22.03
Marc Benoit 7 years ago
committed by Hannu Nyman
parent
commit
b33ec70c95
2 changed files with 3 additions and 1 deletions
  1. +1
    -1
      utils/collectd/Makefile
  2. +2
    -0
      utils/collectd/files/collectd.init

+ 1
- 1
utils/collectd/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=collectd PKG_NAME:=collectd
PKG_VERSION:=5.8.0 PKG_VERSION:=5.8.0
PKG_RELEASE:=5
PKG_RELEASE:=6
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=https://collectd.org/files/ \ PKG_SOURCE_URL:=https://collectd.org/files/ \


+ 2
- 0
utils/collectd/files/collectd.init View File

@ -5,11 +5,13 @@ START=80
STOP=10 STOP=10
USE_PROCD=1 USE_PROCD=1
NICEPRIO=5
start_service() { start_service() {
mkdir -m 0755 -p /var/lib/collectd mkdir -m 0755 -p /var/lib/collectd
procd_open_instance procd_open_instance
procd_set_param command /usr/sbin/collectd -f procd_set_param command /usr/sbin/collectd -f
procd_set_param nice "$NICEPRIO"
procd_close_instance procd_close_instance
} }

Loading…
Cancel
Save