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!

Announcing Scheduled Export GA for Dashboard Studio

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

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...