Skip to content

Instantly share code, notes, and snippets.

@manoot
Created January 27, 2012 15:29
Show Gist options
  • Save manoot/1689300 to your computer and use it in GitHub Desktop.
Save manoot/1689300 to your computer and use it in GitHub Desktop.
<?php
ZabbixAPI::debugEnabled(TRUE);
ZabbixAPI::login($z_server,$z_user,$z_pass)
or die('Unable to login: '.print_r(ZabbixAPI::getLastError(),true));
//fetch graph data for single host
$hosts = ZabbixAPI::fetch_array('host','get',array('extendoutput'=>'shorten','select_graphs'=>'shorten','filter'=>array('host'=>$site)))
or die('Unable to get hostids: '.print_r(ZabbixAPI::getLastError(),true));
//echo "Hosts: ".print_r($hosts, true)."\n<br>";
foreach($hosts as $host) {
foreach($host as $ho) {
foreach($ho as $key => $value) {
print "$key = $value" . '<br>';
}
}
}
?>
# OUTPUT
0 = Array
1 = Array
2 = Array
0 = Array
Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95 Warning: Invalid argument supplied for foreach() in /usr/local/share/zabbix/custom_pages/generatereport.php on line 95
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment