The following issues confirmed at the moment:
1. Graphs are empty for periods of more than 24h (confirmed)
Fix file include/classes/graph.inc.php, function selectData(), replace the IF by the following code:
2. SQL errors in frontend (confirmed)
"Go to latest data and select Graph (for example processor load). After this i click monitoring link (below zabbix logo) to get back to mainpage i get these errors."
Fixed in CVS. Wait for in 1.1beta11.
3. Windows agent returns wrong data for agent.ping (confirmed)
Fixed in CVS. Download binary ZabbixW32.exe from CVS or wait for 1.1beta11.
4. Duplicate graphs when adding graph elements to a template (confirmed)
Fixed in CVS. Wait for 1.1beta11.
5. ZABBIX executes all actions (confirmed)
Try attached actions.c. Replace src/zabbix_server/actions.c, recompile ZABBIX server and report any success/failure stories.
6. Overview does not expand macros $1, $2, ... (confirmed)
Fixed in CVS. Wait for 1.1beta11.
1. Graphs are empty for periods of more than 24h (confirmed)
Fix file include/classes/graph.inc.php, function selectData(), replace the IF by the following code:
Code:
if($this->period<=24*3600)
{
array_push($sql_arr,
"select itemid,round(900*(mod(clock+$z,$p))/($p),0) as i,count(*) as count,avg(value) as avg,min(value) as min,max(value) as max,max(clock) as clock from history where itemid in ($str) and clock>=".$this->from_time." and clock<=".$this->to_time." group by itemid,round(900*(mod(clock+$z,$p))/($p),0)",
"select itemid,round(900*(mod(clock+$z,$p))/($p),0) as i,count(*) as count,avg(value) as avg,min(value) as min,max(value) as max,max(clock) as clock from history_uint where itemid in ($str) and clock>=".$this->from_time." and clock<=".$this->to_time." group by itemid,round(900*(mod(clock+$z,$p))/($p),0)");
}
else
{
array_push($sql_arr,
"select itemid,round(900*(mod(clock+$z,$p))/($p),0) as i,sum(num) as count,avg(value_avg) as avg,min(value_min) as min,max(value_max) as max,max(clock) as clock from trends where itemid in ($str) and clock>=".$this->from_time." and clock<=".$this->to_time." group by itemid,round(900*(mod(clock+$z,$p))/($p),0)");
}
"Go to latest data and select Graph (for example processor load). After this i click monitoring link (below zabbix logo) to get back to mainpage i get these errors."
Fixed in CVS. Wait for in 1.1beta11.
3. Windows agent returns wrong data for agent.ping (confirmed)
Fixed in CVS. Download binary ZabbixW32.exe from CVS or wait for 1.1beta11.
4. Duplicate graphs when adding graph elements to a template (confirmed)
Fixed in CVS. Wait for 1.1beta11.
5. ZABBIX executes all actions (confirmed)
Try attached actions.c. Replace src/zabbix_server/actions.c, recompile ZABBIX server and report any success/failure stories.
6. Overview does not expand macros $1, $2, ... (confirmed)
Fixed in CVS. Wait for 1.1beta11.
At which line number? Is it the IF that starts by this:
Comment