Ad Widget

Collapse

Honeycomb: visualize hosts with problems (Zabbix 7.0.8)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Bertus_Brutalis
    Junior Member
    • Jul 2018
    • 9

    #1

    Honeycomb: visualize hosts with problems (Zabbix 7.0.8)

    Hello all,

    I'd like to add a honeycomb widget to a dashboard, showing all hosts in a host group and then color them by open problems (0 = green, 1 = yellow, >5 - red for instance). I can get the first part going, by just adding one item for an entire host group, but that is only part of the solution. I don't want to check on one item but on the total number of (open) problems for each host. I don't see an item to use for that, and I can't select a suitable widget as input for the honeycomb either.
    Seems like something more users would like to visualize in this way, so hopefully someone can point me in the right direction.
  • Bertus_Brutalis
    Junior Member
    • Jul 2018
    • 9

    #2
    Anybody? The goal would be to base a honeycomb widget on the number of active triggers for a host group.

    Comment

    • grego
      Junior Member
      • Mar 2025
      • 1

      #3
      I would also like this functionality.

      Comment

      • NiceRath
        Junior Member
        • Oct 2020
        • 1

        #4
        Yeah that would be great to get an overview over a large amount of servers.
        Maybe also a way to sort them by highest>lowest trigger prio (as the ones without any issues are not that important..)

        The only way I could think of achiving something like this currently is to add zabbix-items that query the zabbix-database: (one by host)
        * OCBC checks
        * Query starting-point (might be outdated)

        Comment

        • lmonasterio
          Member
          • May 2021
          • 34

          #5
          Hi! I also want the same, so i decide to do this:

          Create a template with metrics from API. In this case, for active problems
          {
          "jsonrpc": "2.0",
          "method": "trigger.get",
          "params": {
          "host": "{HOST.HOST}",
          "only_true": true,
          "countOutput": true
          },
          "id": 1
          }

          Then create a honeycomb widget, but it wil very usefull to have the chance to link to problems page...
          Hope it may works for you.
          My regards

          Comment

          Working...