Search code examples
zabbix

Zabbix Trapper: Cannot get data from orabbix


I am using orabbix to monitor my db. The data from the queries executed on this db using orabbix are sent to zabbix server. However, I am not able to see the data reaching zabbix.

On my zabbix web console, I see this message on the triggers added - "Trigger expression updated. No status update so far."

Any ideas?

My update interval for the trigger is set to 30 sec.


Solution

  • Based on the screenshots you posted, your host is named "wfc1dev1" and you have items with keys "WFC_WFS_SYS_001" and "WFC_WFS_SYS_002". However, based on the Orabbix XML that it sends to Zabbix, the hostname and item keys are different. Here is the XML:

    <req><host>V0ZDMURFVg==</host><key>V0ZDX0xFQUZfU1lTXzAwMg==</key><data>MA==</dat‌​a></req>
    

    From this, we can deduce the host:

    $ echo V0ZDMURFVg== | base64 -d
    WFC1DEV
    

    The key:

    $ echo V0ZDX0xFQUZfU1lTXzAwMg== | base64 -d
    WFC_LEAF_SYS_002
    

    The data:

    $ echo MA== | base64 -d
    0
    

    It can be seen that neither the host name, nor item key match those configured on Zabbix server. Once you fix that, it should work.