See www.zabbix.com for the official Zabbix site.
Get Graph Image PHP
From Zabbix.org
PHP function to download graph images
<?php ////////// // GraphImgByID v1.1 // (c) Travis Mathis - travisdmathis@gmail.com // It's free use it however you want. // ChangeLog: // 1/23/12 - Added width and height to GetGraph Function // ERROR REPORTING error_reporting(E_ALL); set_time_limit(1800); //CONFIGURATION $z_server = 'https://url/zabbix/'; $z_user = 'user'; $z_pass = 'zabbix'; $z_img_path = "/usr/local/share/zabbix/custom_pages/tmp_images/"; //NON CONFIGUREABLE $z_tmp_cookies = ""; $z_url_index = $z_server ."index.php"; $z_url_graph = $z_server ."chart2.php"; $z_url_api = $z_server ."api_jsonrpc.php"; $z_login_data = "name=" .$z_user ."&password=" .$z_pass ."&enter=Enter"; // FUNCTION function GraphImageById ($graphid, $period = 3600, $width, $height) { global $z_server, $z_user, $z_pass, $z_tmp_cookies, $z_url_index, $z_url_graph, $z_url_api, $z_img_path, $z_login_data; // file names $filename_cookie = $z_tmp_cookies ."zabbix_cookie_" .$graphid .".txt"; $image_name = $z_img_path ."zabbix_graph_" .$graphid .".png"; //setup curl $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $z_url_index); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_BINARYTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $z_login_data); curl_setopt($ch, CURLOPT_COOKIEJAR, $filename_cookie); curl_setopt($ch, CURLOPT_COOKIEFILE, $filename_cookie); // login curl_exec($ch); // get graph curl_setopt($ch, CURLOPT_URL, $z_url_graph ."?graphid=" .$graphid ."&width=" .$width ."&height=" .$height ."&period=" .$period); $output = curl_exec($ch); curl_close($ch); // delete cookie header("Content-type: image/png"); unlink($filename_cookie); $fp = fopen($image_name, 'w'); fwrite($fp, $output); fclose($fp); header("Content-type: text/html"); }
# USE
GraphImageById('graphid','time_period_in_seconds','width','height');