Splunk Search

Need Count of values in multivalued field, grouped by another field in json data

rajeshku348
New Member

hi everyone,
I need count of "id" field against the sequence field

parentRecord sequence count(id)

ABC162856 2 1
ABC162856 38 4

I am using spath to extract the multivalued field but it clubs all "id" fields together, so i am unable to group by "sequence" field. I have tried extracting via REX as well but not been able to make it work. I have searched Q&A but couldn't find a similar query.

...
| spath input=jsonpayload output=ids path=data.relationships.elements.data{}.records.data{}.id
| spath input=jsonpayload output=parentID path=data.parentRecord
| spath input=jsonpayload output=sequence path=data.relationships.elements.data{}.sequence
| table parentID, sequence
| stats count(ids) by parentRecord, sequence

my query's result:

sequence count(ids)

2 5
38 5

data:

{
"data": {
"relationships": {
"elements": {
"data": [
{
"sequence": "2",
"records": {
"data": [
{
"id": "ABC62856"
}
]
},
},
{
"sequence": "38",
"records": {
"data": [
{
"id": "ABC9247022"
},
{
"id": "ABC161214"
},
{
"id": "ABC162549"
},
{
"id": "ABC162679"
},
]
},
}
]
}
},
"parentRecord": "ABC162856"
}
}

0 Karma

poete
Builder

Hello @rajeshku348,

I found a few errors in the json, and fixed it.

Here is the solution to your problem.

| makeresults 
| eval _raw="{\"data\": {\"relationships\": {\"elements\": {\"data\": [{\"sequence\": \"2\",\"records\": {\"data\": [{\"id\": \"ABC62856\"}]}},{\"sequence\": \"38\",\"records\": {\"data\": [{\"id\": \"ABC9247022\"},{\"id\": \"ABC161214\"},{\"id\": \"ABC162549\"},{\"id\": \"ABC162679\"}]}}]}},\"parentRecord\": \"ABC162856\"}}"
| spath path=data.relationships.elements.data{}
| rename data.relationships.elements.data{} as datas
| mvexpand datas
| spath input=datas
| rename records.data{}.id as id
| table sequence,id
0 Karma

rajeshku348
New Member

I was able to do it as below but I guess there must be some better way of doing this using spath directly instead of having to use rex

| rex field=_raw max_match=200 "records\": {\"data\": [(?.*?)]},"
| spath input=jsonpayload output=parentRecord path=data.id
| eval z=mvzip(sequence1,ids)
| mvexpand z
| makemv z delim=","
| eval sequence = mvindex(z,0)
| eval recordCount = mvcount(z) -1
| table _time, parentRecord , sequence, recordCount

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...