Zabbix Log Monitoring - Duplicate alerts

7,413

I have fixed this issue.

The reason for this issue was, I was using {ITEM.LASTVALUE} in my Action, which caused this problem. I have changed this to {ITEM.VALUE}. Which fixed the issue.

{ITEM.VALUE} is faster than {ITEM.LASTVALUE}.

If you want to know more about this fix, please see the detailed explanation in Zabbix bug tracker

Share:
7,413

Related videos on Youtube

ArunS
Author by

ArunS

Linux System Administrator by trade. Shell Script writer.

Updated on September 18, 2022

Comments

  • ArunS
    ArunS almost 2 years

    I am configured Zabbix to monitor my Jboss Server logs for Erros and exclude some know errors.
    This setup is working, Zabbix will send me alerts when there is a new "ERROR" entry in the log file, but with one issue,
    sometimes I get multiple alerts for the same event.
    For example, I got 5 alerts with the same time stamp "2012-06-25 07:55:56,864 ERROR".
    The duplicate alerts count is not constant, sometimes I get 2, sometimes 5 or 11.

    I checked the Monitoring > Latest data in the GUI, and found that there are no duplicate entries.

    My configuration of the log monitoring is below.
    I am using the latest version of zabbix server(2.0)

    Item configuration:

    • Description: Server Error Monitoring.
    • Key: log["/SERVER/jboss/jboss-5/server/ps/log/server.log","ERROR",UTF-8,200,skip]
    • Type: Zabbix Agent (Active)
    • Type of information: Log
    • Interval :30

    Trigger configuration:

    • Description: Found Error in Server Log.
    • Expression: (({SERVER Error Monitoring - PS:log["/SERVER/jboss/jboss-5/server/ps/log/server.log","ERROR",UTF-8,200,skip].regexp("can not execute")})=0) & (({SERVER Error Monitoring - PS:log["/SERVER/jboss/jboss-5/server/ps/log/server.log","ERROR",UTF-8,200,skip].regexp("Unexpected redirect")})=0)
    • Event generation: Normal + Multiple TRUE events

    Action configuration:

    • Name: alert mail
    • Event source: Trigger
    • Enable escalations: Uncheck
    • Default subject/message: Default
    • Recovery message: Uncheck
    • Action conditions: Trigger value = PROBLEM
    • Action operations: Send message to User "Admin"
  • ArunS
    ArunS about 12 years
    Yes I have confirmed that I don't have any duplicate trigger or action items. I even tried in a fresh installation of zabbix (version 2.0 & 1.8) for confirming this. I think this is a zabbix bug. Any way I have posted this issue in zabbix. support.zabbix.com/browse/ZBX-5239
  • ArunS
    ArunS about 12 years
    The latest "Zabbix server v2.0.1rc2" version has working without this issue. I have tested this and found that the log monitoring is working fine without any issues. My Zabbix server version: Zabbix server v2.0.1rc2 (revision 28384) (20 June 2012) Compilation time: Jun 26 2012 11:45:16
  • Joao Figueiredo
    Joao Figueiredo almost 12 years
    +1 for linking to the bug Tracker recommended solution.