Ejemplo n.º 1
0
    if (isset($groupid)) {
        echo "<b>GroupID: </b>" . $groupid . "</br>\n";
    }
    if (isset($reporttype)) {
        echo "<b>Report Type: </b>" . $reporttype . "</br>\n";
    }
    if (isset($timeperiod)) {
        echo "<b>Time Period: </b>" . $timeperiod . "</br>\n";
    }
    echo "<b>Temp image path: </b>" . $z_tmpimg_path . "</br>\n";
    echo "</br>\n";
}
// get graphids
// Login to Zabbix API using ZabbixAPI.class.php
ZabbixAPI::debugEnabled(TRUE);
ZabbixAPI::login($z_server, $z_user, $z_pass) or die('Unable to login: '******'w');
$stringData = "1<Introduction>\n\n";
fwrite($fh, $stringData);
$stringData = "This is an automatically generated PDF file containing data gathered from Zabbix Monitoring System\n";
fwrite($fh, $stringData);
$stringData = "#NP\n";
fwrite($fh, $stringData);
#$stringData = "1<Graphs>\n";
#fwrite($fh, $stringData);
fclose($fh);
if ($reporttype == 'host') {
    if (!is_numeric($hostid)) {
        echo "ERROR: Need hostid for host report!</br>\n";
        exit;
Ejemplo n.º 2
0
<?php

require_once "ZabbixAPI.class.php";
// This enables debugging, this is rather verbose but can help debug problems
//ZabbixAPI::debugEnabled(TRUE);
// This logs into Zabbix, and returns false if it fails
ZabbixAPI::login('http://genbook/zabbix/', 'apiuser', 'ap1') or die('Unable to login: '******'apiinfo', 'version') or die('Unable to get Zabbix Version: ' . print_r(ZabbixAPI::getLastError(), true));
echo "Server running Zabbix API Version: {$version}\n<br>";
// Fetch the user ids on the server, fetch_column ensures we just get the first item
// if you want to understand why I do this, put fetch_array instead and see!
$users = ZabbixAPI::fetch_column('user', 'get') or die('Unable to get user ids: ' . print_r(ZabbixAPI::getLastError(), true));
echo "User IDs found: " . implode($users, ',') . "\n<br>";
// Fetch hosts, but with extend option to get more data, and limit records returned
$five_hosts = ZabbixAPI::fetch_array('host', 'get', array('extendoutput' => 1, 'limit' => 5)) or die('Unable to get hosts: ' . print_r(ZabbixAPI::getLastError(), true));
echo "Retrieved maximum of five hosts: " . print_r($five_hosts, true) . "\n<br>";
// Do a simple update of userid = 1, set refresh = 1000
// NOTE: If this fails, it's because your API user is not a super-admin
ZabbixAPI::query('user', 'update', array('userid' => 1, 'refresh' => 1000)) or die('Unable to update: ' . print_r(ZabbixAPI::getLastError(), true));
echo "Updated userid 1 with refresh value of 1000!\n";