Splunk Search

How do you consolidate values when fields are the same?

riffe88
Engager

Hey guys,

thanks for taking time out of your day. I'm relatively new to Splunk and just need help with formatting some output from a search. Essentially, this is what I have:

source=sourcetype | fieldA=*, fieldB=* | table _time, fieldA, fieldB | sort fieldA => that outputs this:

_time | fieldA | fieldB
datetime | JohnDoe | 123456
datetime | JohnDoe | 7890

I'd like it to output:

_time | fieldA | fieldB
datetime | JohnDoe | 123456, 7890

I'm just having some trouble with the syntax. Thanks again for your time!

0 Karma
1 Solution

samhays
Path Finder

Would something like the following meet your needs?

source=sourcetype 
| stats values(fieldB) by fieldA

or maybe

source=sourcetype 
| stats values(fieldB), values(_time) as time  by fieldA
| convert ctime(time)

View solution in original post

samhays
Path Finder

Would something like the following meet your needs?

source=sourcetype 
| stats values(fieldB) by fieldA

or maybe

source=sourcetype 
| stats values(fieldB), values(_time) as time  by fieldA
| convert ctime(time)

riffe88
Engager

That worked beautifully! Thanks so much, Sam!

0 Karma

samhays
Path Finder

glad it worked for you! I converted the comment to an answer for future folks.

0 Karma

mstjohn_splunk
Splunk Employee
Splunk Employee

Hi @riffe88,

Glad that this answer was able to help ya. Would you mind approving it for us so that future users will know it's the correct solution? Thanks!

0 Karma

samhays
Path Finder

Is datetime exactly the same for those two events?

riffe88
Engager

No, but fieldA is. Basically, fieldA generates a lot of the same entry with different values for that entry going into fieldB. I'm doing file integrity monitoring, so the return is like this:

test.txt | hash=1348571934854719328741129
test.txt | hash=9873249857345098809453899

I'm trying to consolidate the different values of hashes into one multivalue cell for each unique filename.

0 Karma
Get Updates on the Splunk Community!

Enter the Dashboard Challenge and Watch the .conf24 Global Broadcast!

The Splunk Community Dashboard Challenge is still happening, and it's not too late to enter for the week of ...

Join Us at the Builder Bar at .conf24 – Empowering Innovation and Collaboration

What is the Builder Bar? The Builder Bar is more than just a place; it's a hub of creativity, collaboration, ...

Combine Multiline Logs into a Single Event with SOCK - a Guide for Advanced Users

This article is the continuation of the “Combine multiline logs into a single event with SOCK - a step-by-step ...