Splunk Search

eval and "|search" question

cpeteman
Contributor

So I have a search that runs over a 4h time span that Only gives results when the number of event of one kind are as manhy as or more than the number of hours. I want to be able to run over any timespan:

    search terms earliest=-4h latest=now() | ... |  stats count by _raw,TimeInHour,punct| 
 addinfo| eval hours = round((info_max_time - info_min_time)/3600,0) | search count > 3

the search should look for results that have a count equal to the number of hours I searched over but if I write

   search terms earliest=-4h latest=now() | ... |  stats count by _raw,TimeInHour,punct  |addinfo
| eval hours = round((info_max_time - info_min_time)/3600,0) | search count > hours-1

I get no results. Are count and hours not something I can compare, how do I change that?

Tags (2)
1 Solution

davecroto
Splunk Employee
Splunk Employee

rename count "AS" something else and then use that something else to compare.

...|stats count AS foobar by _time |where foobar>25

View solution in original post

0 Karma

davecroto
Splunk Employee
Splunk Employee

rename count "AS" something else and then use that something else to compare.

...|stats count AS foobar by _time |where foobar>25

0 Karma

cpeteman
Contributor

changing search to where was all it took. Thanks!

0 Karma

emechler_splunk
Splunk Employee
Splunk Employee

It depends on how you're getting 'count'... Maybe this search will work for you?

search terms earliest=-4h | eventstats count | addinfo | eval hours = round((info_max_time - info_min_time)/3600,0) | where count > hours

0 Karma

cpeteman
Contributor

no it's from a stats pipe I''l add that part of the search.

0 Karma

linu1988
Champion

Is count a field in the event?

and why do u use search count > hours-1? why not where count > hours-1. And rather than round could you use "floor"?

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, ...