Dashboards & Visualizations

How to remove top result or keyword from showing in searh

soulmaker
Explorer

Hi there, I have this query below to search the top policies that has been used. 

 

type="request" "request.path"="prod/" | stats count by policies{} | sort  -count  | head 10

 

by default all the policies is being generated with "default" which I wanted to get rid of when searching so properly shows the top 10 policies only. 

The search query above example results are:

 

policies:
default
policies_1
policies_2
policies_3
....

 

I wanted to get rid of the default showing on my result. Any idea or help is really appricated. 

Labels (2)
0 Karma
1 Solution

bowesmana
SplunkTrust
SplunkTrust

As your policies JSON looks like it's an array, if you are saying that all events will have a 'default' policy as well as another policy, then this should work

type="request" "request.path"="prod/" 
| stats count by policies{} 
| sort  -count  
| where 'policies{}' != "default"
| head 10

 

View solution in original post

bowesmana
SplunkTrust
SplunkTrust

As your policies JSON looks like it's an array, if you are saying that all events will have a 'default' policy as well as another policy, then this should work

type="request" "request.path"="prod/" 
| stats count by policies{} 
| sort  -count  
| where 'policies{}' != "default"
| head 10

 

soulmaker
Explorer

Awesome, this works as well. Thanks again for your help on this one. 

0 Karma
Get Updates on the Splunk Community!

Observability Unlocked: Kubernetes Monitoring with Splunk Observability Cloud

 Ready to master Kubernetes and cloud monitoring like the pros? Join Splunk’s Growth Engineering team for an ...

Update Your SOAR Apps for Python 3.13: What Community Developers Need to Know

To Community SOAR App Developers - we're reaching out with an important update regarding Python 3.9's ...

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...