Ad Widget

Collapse

No events from Node

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • aigars
    Member
    • Apr 2010
    • 55

    #1

    No events from Node

    Hello,


    It's normal so Zabbix node not having events? I can't see child events on master and can't make actions to send e-mails if triggers fired on Node.
    Where can be problem? Zabbix v.1.6.5

    1) Also when trigger fires on child node it's showing strange date, but local time on server is correct. Maybe this is rootcause? please, see screenshot.
    2) Sometimes data from web scenario on node is disapearing! When I go to web scenario(configuration menu) and pressing SAVE or CANCEL button then data gathering is back.
    thanks.


    Aigars
    Last edited by aigars; 21-06-2010, 13:18.
  • aigars
    Member
    • Apr 2010
    • 55

    #2
    Can anyone help?

    Comment

    • NOB
      Senior Member
      Zabbix Certified Specialist
      • Mar 2007
      • 469

      #3
      Hi

      to answer your first question:

      The UNIX time start at 1.1.1970, 00:00.
      That is more or less 40 years, 20 weeks ago.
      If no data is received, the clock is possibly 0 in the database,
      meaning exactly 1.1.1970, 00:00.
      Why there is "no data" is another problem I've never seen
      in our environment.

      Regards

      Norbert.

      Comment

      • aigars
        Member
        • Apr 2010
        • 55

        #4
        Thanks for answer!
        Mhmm... it's very strange because problems are only with child node. Master is working fine and data, events etc. are present..triggers are working so on.
        How can find resolution for problem? Logs are showing so data is transfered from child to master.

        -----------------
        15539:20100517:164338 NODE 1: Received history from node 2 for node 2 datalen 1680
        15537:20100517:164338 NODE 1: Received history_uint from node 2 for node 2 datalen 682
        15536:20100517:164344 Sending configuration data to proxy. Datalen 6090
        15539:20100517:164348 NODE 1: Received history from node 2 for node 2 datalen 1386
        15537:20100517:164348 NODE 1: Received history_uint from node 2 for node 2 datalen 558
        15539:20100517:164355 Sending configuration data to proxy. Datalen 6085
        15535:20100517:164411 NODE 1: Received data from slave node 2 for node 2 datalen 2932

        --------------------

        Comment

        • Palmertree
          Senior Member
          • Sep 2005
          • 746

          #5
          We had the same issue where we could not see events when "All" was selected as the child node but would work if on a specific child node itself. To fix this issue we applied the following change:

          Code:
          diff -ruN /root/zabbix-original/frontends/php/api/classes/class.cevent.php /root/zabbix/frontends/php/api/classes/class.cevent.php
          --- /root/zabbix-original/frontends/php/api/classes/class.cevent.php    2010-05-19 05:26:17.000000000 -0400
          +++ /root/zabbix/frontends/php/api/classes/class.cevent.php     2010-05-19 10:56:41.000000000 -0400
          @@ -162,7 +162,7 @@
                          }
          
           // nodeids
          -               $nodeids = !is_null($options['nodeids']) ? $options['nodeids'] : get_current_nodeid(false);
          +               $nodeids = !is_null($options['nodeids']) ? $options['nodeids'] : get_current_nodeid();
          
          
           // groupids

          Comment

          • aigars
            Member
            • Apr 2010
            • 55

            #6
            Thanks for answer! But there is little bit different situation because node is not having data at all.
            Last edited by aigars; 21-06-2010, 13:18.

            Comment

            Working...