I am using Zabbix for the first time and successfully configured the same. Now the next very important step is to generate report and download as PDF. There are few links available to facilitate the same but I am unable to get the desired output.
https://www.zabbix.com/forum/showthread.php?t=24998
Please help with some solutions.
答案 0 :(得分:1)
zabbix-dynamic-pdf-report模块允许我们生成pdf报告。实施后,我们可以选择在“小时”,“日”,“周”,“月”,“年”的时间范围内为“主持人”,“主持人群组”生成报告。 我们可以从“旧报告”部分检索旧报告。
sudo apt-get install php5-curl php5-json
克隆包含模块的git仓库
cd / opt /
git clone https://github.com/SandipSingh14/Zabbix_
根据zabbix-server配置zabbix-dynamic-pdf-report
vim Zabbix_ / zabbix-dynamic-pdf-report / config.inc.php
<?php
//CONFIGURABLE
# zabbix server info(user must have API access)
$z_server = 'http://zabbix.example.com/';
$z_user = 'admin';
$z_pass = 'zabbix';
# Temporary directory for storing pdf data and graphs - must exist
$z_tmp_path = './tmp';
# Directory for storing PDF reports
$pdf_report_dir = './report';
# Root URL to reports
$pdf_report_url = "./report";
# paper settings
$paper_format = 'A4'; // formats supported: 4A0, 2A0, A0 -> A10, B0 -> B10, C0 -> C10, RA0 -> RA4, SRA0 -> SRA4, LETTER, LEGAL, EXECUTIVE, FOLIO
$paper_orientation = 'portrait'; // formats supported: portrait / landscape
# time zone - see http://php.net/manual/en/timezones.php
$timezone = 'Asia/Calcutta';
# Logo used in PDF - may be empty
# TODO: Specify image size!
$pdf_logo = './images/zabbix.png';
$company_name = 'Zabbix';
//DO NOT CHANGE BELOW THIS LINE
$z_tmp_cookies = "/tmp/";
$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 ."&autologin=1&enter=Sign+in";
?>
cd Zabbix_ / zabbix-dynamic-pdf-report
mkdir tmp报告
sed -i 's,user.authenticate,user.login,g' inc/ZabbixAPI.class.php
sed -i 's,user.authenticate,user.login,g' inc/ZabbixAPI.class.php.org
cp -r /opt/Zabbix_/zabbix-dynamic-pdf-report /usr/share/zabbix/
service apache2 restart
的http:///zabbix-dynamic-pdf-report/index.php