Splunk Search

Why is Eventstats and Subsearch adding non-existent values to the table?

brajaram
Communicator

My data is structured in a way that there exists multiple types of events, each with a specific id field that is unique to the user triggering the events. Each time the user builds a page, it is recorded as an event.

I initially had a query like

index=...
| eventstats sum(buildTime) as SumID by id| table SumID _time id| dedup id
| timechart mean(SumID) AS "Mean Time"

This search correctly provided the mean over time of the sum total of builds of any given id.

However, now I am trying to filter out all ids that hit a specific page. My plan was to use a subsearch such as:

index=... NOT [search index=... url="DONT WANT" | table id] 
| eventstats sum(buildTime) as SumID by id
| table SumID _time id

In theory, this should make the search filter out all events that contain an id in that subsearch produced table. And in fact, it does do that. If I take an ID that hits the page I don't want, and search for it within index=... NOT [search index=... url="DONT WANT" | table id] no results are found.

However, when I do | eventstats sum(buildTime) as SumID by id| table SumID _time id those ids show up in the subsequent table. Why does eventstats make those non-existent ids show up? In fact, if I even click the id from the table and click view events the events fail to return values. So the table is being populated with values that don't exist in the primary search.

0 Karma

DalJeanis
Legend

Try something like this

index=...  
| append [ search index=... url="DONT WANT" | table id | eval flag="junk"] 
| eventstats max(flag) as flag by id
| where isnull(flag)

0 Karma

sravankaripe
Communicator

use fields command

index=... NOT [search index=... url="DONT WANT" | table id]
| eventstats sum(buildTime) as SumID by id
| table SumID _time id | fields SumID _time id

0 Karma

brajaram
Communicator

Still produces results that are not in the primary search. How is it possible that an event exists in the table, such that when I click on the event and click 'view events' to add it to the search, it returns no results?

0 Karma
Get Updates on the Splunk Community!

See your relevant APM services, dashboards, and alerts in one place with the updated ...

As a Splunk Observability user, you have a lot of data you have to manage, prioritize, and troubleshoot on a ...

Index This | What goes away as soon as you talk about it?

May 2025 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with this month’s ...

What's New in Splunk Observability Cloud and Splunk AppDynamics - May 2025

This month, we’re delivering several new innovations in Splunk Observability Cloud and Splunk AppDynamics ...