From 91d980bce6dfaf3fc9c820d9e43a48a8da0e0e0e Mon Sep 17 00:00:00 2001 From: svennd Date: Sat, 21 Nov 2015 17:36:01 +0100 Subject: [PATCH 1/2] docs_proxmox_update A typo, also a note that its currently not working, and changed to how I got it working (not using mk_extension) also see ##2467 and #2123 --- doc/Extensions/Proxmox.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/doc/Extensions/Proxmox.md b/doc/Extensions/Proxmox.md index 0691e1d27..73fadffc6 100644 --- a/doc/Extensions/Proxmox.md +++ b/doc/Extensions/Proxmox.md @@ -1,6 +1,6 @@ # Proxmox graphing - -It is possible to create graphs of the Proxmox VMs that run on your monitored machines. Currently, only trafficgraphs are created. One for each interface on each VM. Possibly, IO grahps will be added later on. +>NOTE : Currently this extension is beeing working on, as such it might not work with the latest version of proxmox VE 4 +It is possible to create graphs of the Proxmox **VMs** that run on your monitored machines. Currently, only trafficgraphs are created. One for each interface on each VM. Possibly, IO grahps will be added later on. The ultimate goal is to be able to create traffic bills for VMs, no matter on which physical machine that VM runs. @@ -10,14 +10,20 @@ To enable Proxmox graphs, do the following: In config.php, enable Proxmox: ```php -$config['enable_proxmox'] = 1 +$config['enable_proxmox'] = 1; ``` -Then, install librenms-agent on the machines running Proxmox, and enable the Proxmox-plugin using: +Then, install [librenms-agent](http://docs.librenms.org/Extensions/Agent-Setup/) on the machines running Proxmox and enable the Proxmox-script using: + ```bash -mk_enplug proxmox +cp /opt/librenms-agent/proxmox /usr/lib/check_mk_agent/local/proxmox +chmod +x /usr/lib/check_mk_agent/local/proxmox ``` -Then, enable the unix-agent on the machines running Proxmox. +Then, restart the xinetd service +```bash +/etc/init.d/xinetd restart +``` +Then in LibreNMS active the librenms-agent and proxmox application flag for the device you are monitoring. You should now see an application in LibreNMS, as well as a new menu-item in the topmenu, allowing you to choose which cluster you want to look at. From d8832e6b4b0d1f4f1671b87123fd600d8016bce6 Mon Sep 17 00:00:00 2001 From: Svennd Date: Mon, 23 Nov 2015 15:58:19 +0100 Subject: [PATCH 2/2] Proxmox extension is working again Updated to reflext the hard work beeing done :) --- doc/Extensions/Proxmox.md | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/Extensions/Proxmox.md b/doc/Extensions/Proxmox.md index 73fadffc6..4b7f8a2a1 100644 --- a/doc/Extensions/Proxmox.md +++ b/doc/Extensions/Proxmox.md @@ -1,5 +1,4 @@ # Proxmox graphing ->NOTE : Currently this extension is beeing working on, as such it might not work with the latest version of proxmox VE 4 It is possible to create graphs of the Proxmox **VMs** that run on your monitored machines. Currently, only trafficgraphs are created. One for each interface on each VM. Possibly, IO grahps will be added later on. The ultimate goal is to be able to create traffic bills for VMs, no matter on which physical machine that VM runs.