Splunk Search

Clarification on Estimated Distinct Count (estdc)

Justin1224
Communicator

Within a search I was given at work, this line was included in the search: estdc(Threat_Activity.threat_key)

I found the following definition for the usage of estdc (estimated distinct count) on the Splunk website:
estdc(X): Returns the estimated count of the distinct values of the field X.
Processes field values as strings

My questions are:
- Is estdc here looking for the estimated count of the distinct values of "Threat_Activity" or "Threat_Activity.threat_key"?
- Are Threat_Activity and threat_key two different things here?
- Aren't they strings and if so, shouldn't they have quotation marks around them?

I'll include the whole search string in case that helps with your answer.

Thank you!

| tstats `summariesonly` estdc(Threat_Activity.threat_key) as current_count from datamodel=Threat_Intelligence.Threat_Activity where earliest=-24h@h latest=+0s | appendcols [| tstats `summariesonly` estdc(Threat_Activity.threat_key) as historical_count from datamodel=Threat_Intelligence.Threat_Activity where earliest=-48h@h latest=-24h@h] | `get_delta`
Tags (1)

niketn
Legend

Estimated Count is working on threat_key.

They have been renamed since they are running for two different days i.e. Last 48 hours and last 24 hours based on earliest and latest time.

It is optional to keep the field names in double quotes unless there is a space in the field name.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

Justin1224
Communicator

I think I figured it out. Is it returning the estimated count of the distinct values of threat_key, where threat_key is inside of Threat_Activity"?

Also, within the query I provided in the question, what are historical_count and current_count? Are those just renaming threat_key in the two instances to current_count and historical_count?

Any help would be greatly appreciated.

0 Karma

lstewart_splunk
Splunk Employee
Splunk Employee

Hi Justin
Yes, any time you see "as" before a term it is renaming (or naming) the field in the results. In your example, the results of estdc(Threat_Activity.threat_key) are placed in a column called current_count.

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...