Splunk Search

Single value module question

RicoSuave
Builder

This is what i'm looking to do and i can't figure it out. I want a single value module to green up once a certain event shows up and go red when a different event shows up and instead of the module displaying the number of events, i want it to show the src address that is in the event. Any suggestions?

Tags (2)
1 Solution

hazekamp
Builder

This is accomplished using both search and SingleValue. In search you want to set the "range" field based on which event shows up.

The Search will lookup for either event and grab the first one. Eval is used to determine the value of "range":

eventA OR eventB | head 1 | eval range=if(eventA, "low", "severe")

In SingleValue the "field" param is the display field so we will set that to the source address. classField "range" adds an additional css class to SingleValue (low=green, red=severe). These values were set based on the above search.

...
<module name="SingleValue">
  <param name="field">src_ip</param>
  <param name="classField">range</param>
</module>

View solution in original post

0 Karma

RicoSuave
Builder

This worked like a charm. Thanks.

0 Karma

hazekamp
Builder

This is accomplished using both search and SingleValue. In search you want to set the "range" field based on which event shows up.

The Search will lookup for either event and grab the first one. Eval is used to determine the value of "range":

eventA OR eventB | head 1 | eval range=if(eventA, "low", "severe")

In SingleValue the "field" param is the display field so we will set that to the source address. classField "range" adds an additional css class to SingleValue (low=green, red=severe). These values were set based on the above search.

...
<module name="SingleValue">
  <param name="field">src_ip</param>
  <param name="classField">range</param>
</module>
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...