Splunk Search

How to filter out results where a field value is less than 1?

ateterine
Path Finder

Hi Splunk community,

I have this query

source=main | 
transaction user_id | 
chart count as Attempts, count(eval(isp_event_type!="authentication_succeeded")) as Failed, count(eval(isp_event_type="authentication_succeeded")) as Success by isp_provider | 
eval percentage = round(Success / Attempts * 100, 1) | 
eval "Login Percentage" = tostring(percentage) + "%" | 
rename isp_provider as "ISP Provider" | 
sort "Login Percentage" |
fields "ISP Provider" Attempts "Login Percentage" flag

I need to filter out those results where Attempts<1 from the results table. What is the best way of doing that?
Thanks!

Tags (3)
1 Solution

gauldridge
Path Finder

Have you tried adding | where Attempts>1 at the end of your search?

You could even place the where statement right after your chart section before doing any evals.

View solution in original post

gauldridge
Path Finder

Have you tried adding | where Attempts>1 at the end of your search?

You could even place the where statement right after your chart section before doing any evals.

ateterine
Path Finder

Thank you! I was missing a pipe when trying this before. Now it works!

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...