Splunk Search

How to get the values for the selected fields

Maniteja81
New Member

Hi Guys,

I have this query with me.

index=qvmr_soc_r job_type=batch |stats dc() as * | fields *vip snps | transpose

Basically i'm checking the field names that matches with these vip and snps names.

But this query is only returning the distinct count not the values of the fields.

How to get these values for the specified fields. Any help would be appreciated.

Thanks,
Maniteja

Tags (1)
0 Karma

somesoni2
Revered Legend

Try like this

index=qvmr_soc_r job_type=batch  | fields *vip* *snps* | fieldsummary maxvals=1| table field
0 Karma

aholzer
Motivator

What you are looking for is | stats values(vip) as VIPs values(snps) as SNPS rather than dc().

This will give you the full list of distinct values in those fields as an multivalue field. Read here for more info.

Hope this helps

0 Karma

lakshman239
Influencer

You have to use fields before stats. something like

index=qvmr_soc_r job_type=batch |fields vip snps | stats dc(vip) as vip_dc_count dc(snps) as snps_dc_count |  transpose
0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...