Splunk Search

Missing data after I increase the numeric data in my where clause

cquinney
Communicator

Greetings

I'm using the following query over 24hrs.

| initial search
| timechart useother=f span=1h avg(field1) by field2 where avg > 100
| fields - NULL

And I get results for that meet that criteria, but when I increase the numeric value from > 100 to > 400, I get zero results even though I should see at least one or two fields from "field2" populate. Any thoughts on what is causing my dilemma?

0 Karma
1 Solution

lakshman239
Influencer

you could do something like this

initial search
| stats avg(field1) AS avg by _time, field2 | where avg > 100 | xyseries _time field2 sum

View solution in original post

0 Karma

lakshman239
Influencer

you could do something like this

initial search
| stats avg(field1) AS avg by _time, field2 | where avg > 100 | xyseries _time field2 sum
0 Karma

cquinney
Communicator

That will actually work for what I'm trying to accomplish, thank you!

0 Karma

Vijeta
Influencer

Try-

 | timechart limit=0 span=1h avg(field1) AS avg by field2  | where avg > 200
0 Karma

cquinney
Communicator

Thank you for the suggestion but that doesn't seem to work either.

0 Karma

lakshman239
Influencer

pls accept the answer to close tracking.

0 Karma

lakshman239
Influencer

Pls change your search as below and re-test

 initial search
| timechart useother=f span=1h avg(field1) AS avg by field2 where avg > 100
0 Karma

cquinney
Communicator

Thank you for the suggestion, but the data still disappears when I increase the numeric value to 200 even though there should be results.

0 Karma

lakshman239
Influencer

do you see avg more than 200 when you run

  initial search
 | timechart useother=f span=1h avg(field1) AS avg by field2  | where avg > 100
0 Karma

cquinney
Communicator

No, nothing populates regardless of the numeric value when I pipe the where clause to its own line I'm afraid.

0 Karma
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...