Splunk Search

Simple "sort" question

betto86
Engager

Hi, I'm new on Splunk and I need to understand how to do this simple sort:

IP               Value

192.168.0.1        1  
192.168.0.2        5  
192.168.0.2        3  
192.168.0.1        2  
192.168.0.1        4  
192.168.0.2        7  

and I need to obtain this:

IP                         Value

192.168.0.1                  1  
192.168.0.1                  2  
192.168.0.1                  4  
192.168.0.2                  3  
192.168.0.2                  5  
192.168.0.2                  7 

Is there a way to do this withous using multivalue fields? It's like a sort Value with "by" clause.

Thank you!

Tags (1)
0 Karma

gokadroid
Motivator

sort is the correct answer as mentioned by others but since expected output has IPs as well as Values sorted in it hence it actually should be:

yourBaseSearch
| sort by IP, Value

OR without by


yourBaseSearch
| sort IP, Value

Ayn
Legend

Steve_modeler
New Member

works! thx.

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Please accept the answer.

---
If this reply helps you, Karma would be appreciated.
0 Karma

BobM
Builder

I think you mean

| sort IP

Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...