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!

Introducing the Splunk Community Dashboard Challenge!

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

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...