[MUNIN Plugin] Kunden und Websites auf dem Server - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Contributions Area (/forum-40.html) +--- Forum: Snippets (/forum-42.html) +--- Thread: [MUNIN Plugin] Kunden und Websites auf dem Server (/thread-5314.html) |
[MUNIN Plugin] Kunden und Websites auf dem Server - Knut - 01-02-2009 04:28 PM English (short Version) below Um die Anzahl meiner Kunden und deren Domains im Auge zu behalten verwende ich gerne die grafischen Möglichkeiten von Munin. Wie man anhand "meiner" beiden Plugin hier im Forum sehen kann ist es auch nicht schwer eigene interessante Scripte zu schreiben. sample picture: Ich gehe dabei von einem fertig konfigurierten ispCP und Munin(-Node) aus. Mein verwendetes System ist ein Debian Etch. 1. Folgenden Code in /usr/share/munin/plugins/ispcp_vsites speichern. Code: #!/bin/sh 2. Ausführbar machen Code: chmod +x /usr/share/munin/plugins/ispcp_vsites 3. Logischen Link setzen. Code: cd /etc/munin/plugins 4. Die Konfiguration des Nodes editieren. Code: pico /etc/munin/plugin-conf.d/munin-node Code: [ispcp_vsites] 5. Munin-Node über das neue Plugin informieren. (Meine Erfahrung hat gezeigt, dass es nicht ausreicht das/die Node neu zu starten. Code: dpkg-reconfigure munin-node Fertig. Du findest die Grafiken bei Munin im Abschnitt DISK Download Link für das Script : http://addons.isp-control.net/unofficial/ispcp_vsites_www.isp-control.net.tar.gz ---- ENGLISH VERSION --- Hi, i like using munin to monitor my server. munin should show me the amount of websites and domains. if someone else want to use munin to monitor his server here is the plugin. The system requiers a complete installation of ispCP and Munin(-Node). This plugin runs on Debian Etch. 1. Save this code over here -> /usr/share/munin/plugins/ispcp_vsites Code: #!/bin/sh 2. make it executable. Code: chmod +x /usr/share/munin/plugins/ispcp_vsites 3. Create the logic link Code: cd /etc/munin/plugins 4. Edit the nodes config file. Code: pico /etc/munin/plugin-conf.d/munin-node Code: [ispcp_vsites] 5. 5. Reinitialise munin-node Code: dpkg-reconfigure munin-node Done. Download Link for the script : http://addons.isp-control.net/unofficial/ispcp_vsites_www.isp-control.net.tar.gz You will find the graphic below the DISK stats RE: [MUNIN Plugin] Kunden und Websites auf dem Server - mr.x - 01-03-2009 05:52 AM Hi Knut, Danke Habe es eben mal ausprobiert. Geht super ! Jan RE: [MUNIN Plugin] Kunden und Websites auf dem Server - DaSilva - 02-16-2009 04:02 AM Thanks for the handy plugins! Can you make them dynamic like other plugins? So that the graph always fits to the highest number? Thanks. And how can I add graphs for a month/year? Currently I can only see daily and weekly graphs... RE: [MUNIN Plugin] Kunden und Websites auf dem Server - Knut - 02-16-2009 04:37 AM (02-16-2009 04:13 AM)DaSilva Wrote: Can you make them dynamic like other plugins? Remove this line Code: echo 'graph_args --upper-limit 100 -l 0' Code: dpkg-reconfigure munin-node (02-16-2009 04:13 AM)DaSilva Wrote: And how can I add graphs for a month/year? Currently I can only see daily and weekly graphs... Hmm... klick at the images ? EDIT: I think for monthly images wait a week, for yearly images wait a month. Knut RE: [MUNIN Plugin] Kunden und Websites auf dem Server - DaSilva - 02-16-2009 06:43 AM Thanks |