Files

57 lines
2.0 KiB
PHP
Raw Permalink Normal View History

<?php
2015-08-28 11:01:36 +02:00
/*
* Copyright (C) 2015 Mark Schouten <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; version 2 dated June,
* 1991.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* See http://www.gnu.org/licenses/gpl.txt for the full license
*/
2019-04-11 23:26:42 -05:00
include('includes/html/application/proxmox.inc.php');
2019-06-23 00:29:12 -05:00
if (!\LibreNMS\Config::get('enable_proxmox')) {
print_error('Proxmox agent was discovered on this host. Please enable Proxmox in your config.');
2016-08-18 20:28:22 -05:00
} else {
$graphs = array(
'proxmox_traffic' => 'Traffic',
);
foreach (proxmox_node_vms(var_get('device')) as $nvm) {
$vm = proxmox_vm_info($nvm['vmid'], $nvm['cluster']);
foreach ($vm['ports'] as $port) {
foreach ($graphs as $key => $text) {
$graph_type = 'proxmox_traffic';
$graph_array['height'] = '100';
$graph_array['width'] = '215';
2019-06-23 00:29:12 -05:00
$graph_array['to'] = \LibreNMS\Config::get('time.now');
$graph_array['id'] = $vm['app_id'];
$graph_array['device_id'] = $vm['device_id'];
$graph_array['type'] = 'application_'.$key;
$graph_array['port'] = $port['port'];
$graph_array['vmid'] = $vm['vmid'];
$graph_array['cluster'] = $vm['cluster'];
$graph_array['hostname'] = $vm['description'];
echo '<h3>'.$text.' '.$port['port'].'@'.$vm['description'].'</h3>';
echo "<tr bgcolor='$row_colour'><td colspan=5>";
2019-04-11 23:26:42 -05:00
include 'includes/html/print-graphrow.inc.php';
echo '</td></tr>';
}
}
}
}