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!

Enter the Splunk Community Dashboard Challenge for Your Chance to Win!

The Splunk Community Dashboard Challenge is underway! This is your chance to showcase your skills in creating ...

.conf24 | Session Scheduler is Live!!

.conf24 is happening June 11 - 14 in Las Vegas, and we are thrilled to announce that the conference catalog ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...