Dashboards & Visualizations

Adding a field from one event to others

h2dennis
Engager

Let's say I have these events:

Index = A, Member = 1111, Cart Id = 1

Index = A, Member = 2222, Cart Id = 2

 

And these events DID NOT have a member ID field

Index = A, Associate = Bill, Cart Id = 1

Index = A, Associate = Carl, Cart Id = 1

Index = A, Associate = Rick, Cart Id = 2

 

I want to display this:

Associate  Member

Bill                1111

Carl              1111

Rick             2222

 

How would I do that?

Labels (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

The stats command can group the events by Cart Id.

| stats values(*) as * by "Cart Id"
| mvexpand Associate
| table Associate Member
---
If this reply helps you, Karma would be appreciated.

View solution in original post

0 Karma

richgalloway
SplunkTrust
SplunkTrust

The stats command can group the events by Cart Id.

| stats values(*) as * by "Cart Id"
| mvexpand Associate
| table Associate Member
---
If this reply helps you, Karma would be appreciated.
0 Karma

h2dennis
Engager

Thanks. It was really the mvexpand that I was looking for

0 Karma
Get Updates on the Splunk Community!

Detecting Brute Force Account Takeover Fraud with Splunk

This article is the second in a three-part series exploring advanced fraud detection techniques using Splunk. ...

Buttercup Games: Further Dashboarding Techniques (Part 9)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...

Buttercup Games: Further Dashboarding Techniques (Part 8)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...