Dashboards & Visualizations

How to ignore common field values from my graphs that occur more than 2 times?

606866581
Path Finder

I'm trying to remove outliers from my graphs where a field value appears too many times. My logs are in this format:

name:bob accessDate:July

name:stewart accessDate:July

name:bob accessDate:August

name:bob accessDate:August

name:paul accessDate:November

I want to totally ignore bob (and anyone else who appears more than 2 times), because he's skewing the access logs.
I've been trying to figure out a solution for more hours than I care to admit.
Thanks.

Tags (3)
0 Karma
1 Solution

aholzer
Motivator

Depending on what you are trying to graph, why don't you add a count to your graph, and simply pipe into search count<2 ?

<base search> | timechart count ... by ... | search count<2

That'll remove any value in your "by" group that has more than 2 occurrences.

If your graphing / search are more complex than that, you can use a subsearch to dynamically identify who has more than 2 occurrences, and then ignore those:

<base search> [search <base search> | stats count by name | search count < 2 | table name] | <rest of your search>

This will return events that have a name from the list of names that occur only once.

Hope this helps

View solution in original post

aholzer
Motivator

Depending on what you are trying to graph, why don't you add a count to your graph, and simply pipe into search count<2 ?

<base search> | timechart count ... by ... | search count<2

That'll remove any value in your "by" group that has more than 2 occurrences.

If your graphing / search are more complex than that, you can use a subsearch to dynamically identify who has more than 2 occurrences, and then ignore those:

<base search> [search <base search> | stats count by name | search count < 2 | table name] | <rest of your search>

This will return events that have a name from the list of names that occur only once.

Hope this helps

606866581
Path Finder

Brilliant, the second example worked a treat. Thank you very much!

Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...