Package: rtkit (0.13-5.1 and others) describes trkit-daemon as:
RealtimeKit is a D-Bus system service that changes the scheduling policy of user processes/threads to SCHED_RR (i.e. realtime scheduling mode) on request. It is intended to be used as a secure mechanism to allow real-time scheduling to be used by normal user processes.
The control file is located at /usr/lib/systemd/system/rtkit-daemon.service. Additional configurations can be supplied via .conf files in /usr/lib/systemd/system/rtkit-daemon.service.d.
In Debian, logging for rtkit-daemon has not been specifically specified.
Based upon notes at Stop rtkit-daemon from spamming logs with "Supervising X threads of Y processes of Z users", the solution is simply to set the logging level.
mkdir /usr/lib/systemd/system/rtkit-daemon.service.d
cat > /usr/lib/systemd/system/rtkit-daemon.service.d/log.conf << EOF
[Service]
LogLevelMax=info
EOF
systemctl daemon-reload
systemctl restart rtkit-daemon.service
Since the message is of level debuginfo, logging level info should eliminate most of the spam.
Logging level is a numeric value based upon the following list:
- 0 or emergency, (highest priority messages)
- 1 or alert,
- 2 or critical,
- 3 or error,
- 4 or warning,
- 5 or notice,
- 6 or info
- 7 or debuginfo (lowest priority messages)
Note: if no loglevel is specified in whatever systemd service .conf file, the loglevel of the daemon defaults to 7, in other words allowing the highest level of verbosity (which confirms my earlier statement). More details can be founrd in systemd.exec — Execution environment configuration.
There is an outstanding bug in Debian.
Continue reading "rtkit-daemon[<pid>]: Supervising..." »