Splunk Search

How can we use tstats with TERM and PREFIX?

danielbb
Motivator

I'm trying to run - 

 

 

| tstats count where index=wineventlog* TERM(EventID=4688) by _time span=1m

 

 

It returns no results but specifying just the term's value seems to work - 

 

| tstats count where index=wineventlog* TERM(4624) by _time span=1m

 




https://conf.splunk.com/files/2020/slides/PLA1089C.pdf explains the subject well but my simple query is not working.

Labels (1)
0 Karma

schose
Builder

Hi @danielbb ,

 

It's EventCode, not EventID. 😉

| tstats count where index=wineventlog* TERM(EventCode=4688) by _time span=1m

 best regards,

 

Andreas

0 Karma

nordinethales
Path Finder

Hi danielbb,

You can try

| tstats count where index=wineventlog* TERM(EventID=*) by _time span=1m
But in the _raw event, you must have something which corresponds, like

...EventID=4624...


Then, if you want to use this EventID in the group by, you can try (be carefull The text you provide for the PREFIX() directive must be in lower case)

| tstats count where index=wineventlog* TERM(EventID=*) by PREFIX(eventid=) _time span=1m

Regards

neelwoolies
Engager

This is perfect. 

0 Karma

danielbb
Motivator

Ok, but TERM(4624) does work. 

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Which means that term is stored in a tsidx file (is indexed).

---
If this reply helps you, Karma would be appreciated.

richgalloway
SplunkTrust
SplunkTrust

The tstats command only works with indexed fields, which usually does not include EventID.

---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...