Splunk Search

Why is my stats count by command missing number of result?

phamxuantung
Communicator

Hello,

I have a csv file that have 209,946 rows of event as show

phamxuantung_0-1659934357176.png

 

After some query to apply some condition, as

|inputlookup VCCS_VIB.csv
|eval TIME = strptime(Time,"%H:%M %d/%m/%Y")
|where TIME>=1656090000 AND TIME<=1659286800
|stats count by TYPE NAME CMND CARDNUM

The meaning is I want to find events that between 25/6 and 31/7 and filter out duplicate row that match NAME, CMND and CARDNUM.

The query above show 207,460 events (note that all events are between the time constrain), when I order the count column, it show

phamxuantung_1-1659934357227.png

 

So there are only two duplicate row -> the final number of row should have been 209,946 - 2 = 209,944, not 207,460. There are over two thousand events missing somewhere.

Could anyone show me?

Labels (3)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

What do you get if you try this?

|inputlookup VCCS_VIB.csv
|eval TIME = strptime(Time,"%H:%M %d/%m/%Y")
|where TIME>=1656090000 AND TIME<=1659286800
|fillnull value="NA"
|stats count by TYPE NAME CMND CARDNUM

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

What do you get if you try this?

|inputlookup VCCS_VIB.csv
|eval TIME = strptime(Time,"%H:%M %d/%m/%Y")
|where TIME>=1656090000 AND TIME<=1659286800
|fillnull value="NA"
|stats count by TYPE NAME CMND CARDNUM

phamxuantung
Communicator

Ah yes, I forgot stats count doesn't count null value.

Thank you.

0 Karma
Get Updates on the Splunk Community!

See just what you’ve been missing | Observability tracks at Splunk University

Looking to sharpen your observability skills so you can better understand how to collect and analyze data from ...

Weezer at .conf25? Say it ain’t so!

Hello Splunkers, The countdown to .conf25 is on-and we've just turned up the volume! We're thrilled to ...

How SC4S Makes Suricata Logs Ingestion Simple

Network security monitoring has become increasingly critical for organizations of all sizes. Splunk has ...