Splunk Search

Splunk query issue

santosh11
New Member

Dear All,

I have two columns Id and relationalId below is the sample of it.

Id CorrelationalId
1 2

2 3

3 4

i am looking to get as an output

RelatedCorrelationalId

1 2 3 4

Please can someone guide me on the above issue.

Regards,
Santosh

0 Karma

493669
Super Champion

@santosh11 Try below query-

| eval RelatedCorrelationalId = mvappend(Id, CorrelationalId)| stats count by RelatedCorrelationalId | table RelatedCorrelationalId

Below is using sample data-

|makeresults|eval Id="1", CorrelationalId="2"
|append[|makeresults|eval Id="2", CorrelationalId="3"]
|append[|makeresults|eval Id="3", CorrelationalId="4"]
|fields - _time| eval RelatedCorrelationalId = mvappend(Id, CorrelationalId)| stats count by RelatedCorrelationalId | table RelatedCorrelationalId

Let me know if it helps!

0 Karma

santosh11
New Member

I am trying that now will update you on the status. Thank you for the response.

0 Karma

493669
Super Champion

Can you explain How RelatedCorelationalId field is getting populated?

0 Karma

santosh11
New Member

Sorry for the inproper information.

Basically the RelatedCorrelationId is my required Output.

Where i need to get all the interlinked records of Id and corelationalId. Basically parent child relationship. i need to get all that records in one place.

Hope it explains.

Regards,
Santosh

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...