Splunk Search

How to use SPLUNK GROUPBY in my search?

jayeshrajvir
Explorer

A002 : A]
[A004 : 2]
[A005 : 2000]
[A006 : 0110]
[A007 : 85]
[A008 : VISA Credit]
[A008.ID : 9]
[A010 : 1644757200000]
[A019 : ANZ 407220]
[A021 : 20]
[A022 : A]

[RESPONDER : 5]

[A028 : 85]

SELECT A028, responder, count( * ) as total from table
where A028 <> '00' group by auth_resp_cde, auth_responder

The above one is SQL query i wanted to similar query in the SPLNK please assist. 

Labels (1)
Tags (2)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @jayeshrajvir,

I suppose that you already extracted all the fields from your logs and you need only the search to display results grouped by; if not, you have also to extract all used fields.

So, please try something like this:

index=your_index A028!="00"
| stats values(A028) AS A28 values(responder) AS responder count AS total BY auth_resp_cde auth_responder

Ciao.

Giuseppe

View solution in original post

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @jayeshrajvir,

I suppose that you already extracted all the fields from your logs and you need only the search to display results grouped by; if not, you have also to extract all used fields.

So, please try something like this:

index=your_index A028!="00"
| stats values(A028) AS A28 values(responder) AS responder count AS total BY auth_resp_cde auth_responder

Ciao.

Giuseppe

0 Karma

jayeshrajvir
Explorer

Thanks for your help. It's working

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @jayeshrajvir,

good for you, see next time!

Ciao and happy splunking

Giuseppe

P.S.: Karma Points are appreciated 😉

0 Karma
Get Updates on the Splunk Community!

Splunk App Dev Community Updates – What’s New and What’s Next

Welcome to your go-to roundup of everything happening in the Splunk App Dev Community! Whether you're building ...

The Latest Cisco Integrations With Splunk Platform!

Join us for an exciting tech talk where we’ll explore the latest integrations in Cisco &#43; Splunk! We’ve ...

Enterprise Security Content Update (ESCU) | New Releases

In April, the Splunk Threat Research Team had 2 releases of new security content via the Enterprise Security ...