[ZBXNEXT-3064] Highlight approximated (missing) data periods on graphs Created: 2015 Dec 04  Updated: 2015 Dec 08

Status: Open
Project: ZABBIX FEATURE REQUESTS
Component/s: Frontend (F)
Affects Version/s: 2.4.6
Fix Version/s: None

Type: New Feature Request Priority: Trivial
Reporter: Pavel Assignee: Unassigned
Resolution: Unresolved Votes: 0
Labels: graphs
Remaining Estimate: Not Specified
Time Spent: Not Specified
Original Estimate: Not Specified


 Description   

Data approximation on graph mostly controlled by 2 constants:
ZBX_GRAPH_MAX_SKIP_CELL and ZBX_GRAPH_MAX_SKIP_DELAY.

ClineGraphDraw.php:

				if ($cell > $delay) {
					$draw = (boolean) ($diff < (ZBX_GRAPH_MAX_SKIP_CELL * $cell));
				}
				else {
					$draw = (boolean) ($diff < (ZBX_GRAPH_MAX_SKIP_DELAY * $delay));
				}

So, if data absent period greather tahn this settings igraph just will be cuted to parts.
Otherwise line approximated.

https://www.zabbix.com/forum/showthread.php?t=14360
https://www.zabbix.com/forum/showthread.php?t=43405

So, my suggestion draw approximation which is not real monitoring data for distinguish. For example it may be dashed line of same color. Or line with lighter color.


Generated at Sat Apr 27 08:22:09 EEST 2024 using Jira 9.12.4#9120004-sha1:625303b708afdb767e17cb2838290c41888e9ff0.