Alerting

When adding alert suppression fields with spaces in them should we use quotes around the field name?

abroglesc
Explorer

Let's say we have an alert which has a few field like:

 

| search <INSERT_RANDOM_BASE_QUERY>
| table src_ip, _time, dest_ip
| rename _time as "Time", src_ip as "Source IP", dest_ip as "Destination IP"

 

And we want to suppress on "Source IP" and "Destination IP" being the same. Should our suppress fields look like:

 

alert.suppress.fields = "Source IP","Destination IP"

 

Or:

 

alert.suppress.fields = Source IP,Destination IP

 

 ?

Labels (1)

gcusello
SplunkTrust
SplunkTrust

Hi @abroglesc,

at first, as @richgalloway said, if you have spaces in a field name, you have to use quotes, and in my experience it isn't a good idea to use spaces in field names, eventually you could rename them at the end of your search in column displaying.

Anyway, Taking always "Source IP" when present or "Destination IP" if the first isn't present, you could use eval coalesce:

| eval IP=coalesce("Source IP","Destination IP")

Ciao.

Giuseppe

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Use quotation marks.  Without them you have 3 fields, one of which is repeated.

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...