CACTI监控只能查看一天数据,不能显示其他时间解决方法
引起这个原因是因为在网站存放位置的:
graph_image.php
graph_json.php
graph_view.php
graph_xport.php
因为限制了时间戳的最大时间是1600000000,此时间为2020-09-13 20:26:40
改为2600000000或者更大
/* override: graph start time (unix time) */
if (!isempty_request_var('graph_start') && get_request_var('graph_start') < 2600000000) {
$graph_data_array['graph_start'] = get_request_var('graph_start');
}
/* override: graph end time (unix time) */
if (!isempty_request_var('graph_end') && get_request_var('graph_end') < 2600000000) {
$graph_data_array['graph_end'] = get_request_var('graph_end');
}
问题解决来源:
GITHUB:Graph history only for 1 one day · Issue #3799 · Cacti/cacti · GitHub
CSDN:cacti不能显示最近7天或最近一月流量图问题解决_夏泽鹏的博客-CSDN博客
阅读剩余
版权声明:
作者:ZYX
链接:https://zyxweb.cn/cacti%e7%9b%91%e6%8e%a7%e5%8f%aa%e8%83%bd%e6%9f%a5%e7%9c%8b%e4%b8%80%e5%a4%a9%e6%95%b0%e6%8d%ae%ef%bc%8c%e4%b8%8d%e8%83%bd%e6%98%be%e7%a4%ba%e5%85%b6%e4%bb%96%e6%97%b6%e9%97%b4%e8%a7%a3%e5%86%b3/
文章版权归作者所有,未经允许请勿转载。
THE END