Hello,
I have a couple splunk columns that looks as follows:
server:incident:incident#:severity
severity
this object is then fed to another system which separates and generates incidents.
Server: hostname
incident: category of incident
incident#: the incident number
sererity: Critical/Warning/Clear
Example:
serverA:zabbix:123456:Warning
Warning
serverA:zabbix:123456:Critical
Critical
The objective is that it generates uniqueness of the incident (if warning, then create a ticket, if Critical then call out)
All works well when with the separate of Critical and Warning alerts, however when one clear is generated, I need to generate two records to look as follows:
serverA:zabbix:123456:Warning
Clear
serverA:zabbix:123456:Critical
Clear
This way, the object that has been sent will get the clear.
Is there a way to achieve this?
Thanks
David
... View more