Hi all,
isn't the zoom part left of "|" supposed to zoom "back in time" (e.g. decreasing the chosen intervall)?
For example, if I choose "7d" in the upper zoom setting and then click on the "1d" left of "|" I would expect to have a time range of "7d" - "1d" => 6d.
But at least the 2.0.10 frontend version adds "1d" to "7d" giving "8d" and not "6d".
I changed line 1198 of /usr/share/zabbix/js/gtlc.js
to get expected behaviour.
Or do I misunderstand the concept?
Thank you for your comments!
P.S. The additional zoom values were inserted by me.
isn't the zoom part left of "|" supposed to zoom "back in time" (e.g. decreasing the chosen intervall)?
For example, if I choose "7d" in the upper zoom setting and then click on the "1d" left of "|" I would expect to have a time range of "7d" - "1d" => 6d.
But at least the 2.0.10 frontend version adds "1d" to "7d" giving "8d" and not "6d".
I changed line 1198 of /usr/share/zabbix/js/gtlc.js
Code:
addListener(this.dom.nav_linklist[links], 'click', this.navigateLeft.bindAsEventListener(this, 0-moves[i]));
Or do I misunderstand the concept?
Thank you for your comments!
P.S. The additional zoom values were inserted by me.
Comment