Splunk Search

Can you help me with my filtering search?

simbug
New Member

Hi,

I am trying to create a list of customers based on one event type but then show stats from all the events by those customers. I tried the following:

index=event
| join type=inner Username
[ search index=event event_type=web_login ]
| stats sum(purchase.amount)

But with this structure, I only get purchase.amount for web_login event whereas I want to have a sum from all events from those customers.

Thanks in advance,
Simon.

0 Karma

richgalloway
SplunkTrust
SplunkTrust

A subsearch without join should work for that.

index=event [ search index=event event_type=web_login Username=* | fields Username | format ]
| stats sum(purchase.amount)
---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...