CentOS Stream 9

Munin : Add Target Items2026/04/06

 

Enable plugin to add new monitoring target items.
Plugins are located like here, but it's possbile to add 3rd party's one or your original plugins.

⇒ https://github.com/munin-monitoring/contrib/

For example, add a terget iten to enable Apache access plugin on here.

[1] Configure on the target host you'd like to enable a new plugin.
[root@dlp ~]#
dnf -y install perl-libwww-perl
[root@dlp ~]#
ln -s /usr/share/munin/plugins/apache_accesses /etc/munin/plugins/apache_accesses

[root@dlp ~]#
vi /etc/httpd/conf.d/server-status.conf
# create new
<Location /server-status>
    SetHandler server-status
    Require local
</Location>

[root@dlp ~]#
systemctl restart munin-node

[root@dlp ~]#
systemctl reload httpd
[2] Login to the Munin admin site and make sure a new taget item is displayed after few minutes later.
Matched Content