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
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...