Ad Widget

Collapse

Graph - bug or limitation? 20 item pattern

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • zar
    Senior Member
    • Mar 2018
    • 148

    #1

    Graph - bug or limitation? 20 item pattern

    what to do if you need more than 20 parameters? for example, you need to draw a graph of the network interfaces of the catalyst.
    and there are 48 ports. each incoming / outgoing traffic and you need to watch it all. how to be ...?
    how to get away from the 20 limit

    the documentation generally says that the limit in zabbix 5.0.9 is only 50, and I don't even want to draw them ...

    Select hosts and items to display on the graph. Alternatively you may enter host and item patterns. Wildcard patterns may be used (for example, * will return results that match zero or more characters). To specify a wildcard pattern, just enter the string manually and press Enter. While you are typing, note how all matching hosts are displayed in the dropdown.
    Up to 50 items may be displayed in the graph.
    Click image for larger version

Name:	Screenshot from 2021-04-09 00-06-26.png
Views:	983
Size:	156.7 KB
ID:	422647
  • dimir
    Zabbix developer
    • Apr 2011
    • 1080

    #2
    Unfortunately this is hard-coded in frontend configuration file
    Code:
    [B]$[/B] grep ZBX_WIDGET_ROWS ui/include/defines.inc.php
    define('[B]ZBX_WIDGET_ROWS[/B]', 20);
    Or, if you install from packages, it should be /usr/share/zabbix/include/defines.inc.php .
    There's currently no way to override this one properly, if you need this you can create a feature request.

    Comment

    Working...