CentOS 7
Sponsored Link

Munin : Add Target Items2015/06/11

 
Enable plugin to add new monitoring target items.
Plugins are located like here, but it's possible 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@node01 ~]#
ln -s /usr/share/munin/plugins/apache_accesses /etc/munin/plugins/apache_accesses

[root@node01 ~]#
vi /etc/httpd/conf.d/server_status.conf
# create new

ExtendedStatus On

<Location /server-status>
    SetHandler server-status
    Require local
</Location>

[root@node01 ~]#
systemctl restart httpd

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

[2] Login to the Munin admin site and make sure a new taget item is displayed after few minutes later.
Matched Content