Splunk Search

How to get the 10 min values of a column by another column?

alexandrerichar
Explorer

I am trying to do something like this:

| stats limit=10 min(Speed) by customer

or

| sort customer, speed
| head(10) by customer
0 Karma
1 Solution

alexandrerichar
Explorer

to4kawa, your solution seems to only one speed per customer, but what I want is the 10 lowest speed per customer. I have found that this solution si working well even if it is not beautiful :

| sort customer, Speed
| streamstats count as row by customer
| search row <= 5
| fields customer, Speed

View solution in original post

0 Karma

alexandrerichar
Explorer

to4kawa, your solution seems to only one speed per customer, but what I want is the 10 lowest speed per customer. I have found that this solution si working well even if it is not beautiful :

| sort customer, Speed
| streamstats count as row by customer
| search row <= 5
| fields customer, Speed
0 Karma

sensitive-thug
Retired

Hi @alexandrerichard,

Thanks for asking a question! If you were able to resolve this issue, please click “Accept” directly below the answer to resolve the post.

0 Karma

to4kawa
Ultra Champion

stats does not have limit and headdoes not have by .

see reference.

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Rather than describe the problem in terms of SPL (which may not describe the problem at all), can you describe it in natural language?
What do you want the results to look like?

---
If this reply helps you, Karma would be appreciated.
0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

What Is Splunk? Here’s What You Can Do with Splunk

Hey Splunk Community, we know you know Splunk. You likely leverage its unparalleled ability to ingest, index, ...

Level Up Your .conf25: Splunk Arcade Comes to Boston

With .conf25 right around the corner in Boston, there’s a lot to look forward to — inspiring keynotes, ...

Manual Instrumentation with Splunk Observability Cloud: How to Instrument Frontend ...

Although it might seem daunting, as we’ve seen in this series, manual instrumentation can be straightforward ...