Ad Widget

Collapse

A list of "not supported" or "unknown" items and triggers...

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • makini
    Member
    • Jul 2006
    • 59

    #1

    A list of "not supported" or "unknown" items and triggers...

    Hi,

    As a suggestion - make a web page in UI with all the items and triggers' names that gone into "not supported" and UNKNOWN status (in addition to the count in Reports>Status page). It would also be very useful to get some alert or Action that could notify about those items and triggers.

    Would be very much appreciated.
  • exkg
    Senior Member
    Zabbix Certified Trainer
    Zabbix Certified Specialist
    • Mar 2007
    • 718

    #2
    In windows agents is possible to use:

    agent[unsupported_requests]

    And in ZABBIX Server can be:

    zabbix[items_unsupported]


    []s,
    Luciano
    --
    Luciano Alves
    www.zabbix.com
    Brazil | México | Argentina | Colômbia | Chile
    Zabbix Performance Tuning

    Comment

    • makini
      Member
      • Jul 2006
      • 59

      #3
      Sure, but...

      Originally posted by exkg
      In windows agents is possible to use:

      agent[unsupported_requests]

      And in ZABBIX Server can be:

      zabbix[items_unsupported]


      []s,
      Luciano
      We mostly got *nix machines.
      The zabbix[items_unsupported] is documented as "Number of unsupported items in ZABBIX database", not really useful - its the same number as in the Reports>Status. Names to identify those that became 'not supported' is the issue. UNKNOWN triggers were visible in the Monitoring>Triggers page in previous versions, now those are filtered and viewing "all" issues is totally cluttering the screen.

      Comment

      • exkg
        Senior Member
        Zabbix Certified Trainer
        Zabbix Certified Specialist
        • Mar 2007
        • 718

        #4
        Hmmm ... with a ExternalCheck ?

        # grep "Not supported by ZABBIX agent" /tmp/zabbix_server.log |grep <HOST> |wc -l
        4111



        []s,
        Luciano
        --
        Luciano Alves
        www.zabbix.com
        Brazil | México | Argentina | Colômbia | Chile
        Zabbix Performance Tuning

        Comment

        • exkg
          Senior Member
          Zabbix Certified Trainer
          Zabbix Certified Specialist
          • Mar 2007
          • 718

          #5
          Ok ... a little bit better:

          # tail -1000 /tmp/zabbix_server.log |grep "Not supported by ZABBIX agent" |grep <HOST> |awk {'print $3'} |sort |uniq |wc -l


          Its can be a ExternalCheck in a template for all *nix hosts.


          []s,
          Luciano
          --
          Luciano Alves
          www.zabbix.com
          Brazil | México | Argentina | Colômbia | Chile
          Zabbix Performance Tuning

          Comment

          • makini
            Member
            • Jul 2006
            • 59

            #6
            All true...

            Ok ... a little bit better:

            # tail -1000 /tmp/zabbix_server.log |grep "Not supported by ZABBIX agent" |grep <HOST> |awk {'print $3'} |sort |uniq |wc -l

            Its can be a ExternalCheck in a template for all *nix hosts.
            It's really not a problem to discover those items from the Server log, we do use similar ways to what you're proposing.
            However, since it's the Server that discovers and disables those erroneous items and triggers (or turns temporarily "not supported") it could also notify or simply list those on a separate centralized page, or perhaps include a filter for those on the Monitoring>Triggers page. It is of course possible to make work-arounds for this but wouldn't it be the best if the system itself had some simple solution?

            Comment

            Working...