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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...