Hello.
I'm collecting information from the Application EventLog using
and want to store it for future use.
I 've triggers with a specific EventID=1000 based on this information.
However, I need to do additional log processing to get the information about which application actually caused this event. In my opinion, it is reasonable to first create a Depended Item that would filter the information by EventID=1000, but the functions for this are only available at the trigger level. I do not want to create a separate Item
because it will actually double the load on the Zabbix Agents. Is it possible?
I'm collecting information from the Application EventLog using
Code:
eventlog[Application,,"Warning|Error",,,,skip]
I 've triggers with a specific EventID=1000 based on this information.
However, I need to do additional log processing to get the information about which application actually caused this event. In my opinion, it is reasonable to first create a Depended Item that would filter the information by EventID=1000, but the functions for this are only available at the trigger level. I do not want to create a separate Item
Code:
eventlog[Application,,"Warning|Error",,,1000,skip]
You can set regex only on that message text..
but as you have already very general catch there, then you will pick up some stuff twice... So some should be excluded from "catch all".
Comment