Splunk Search

How to sort field values alphanumerically?

pgadhari
Builder

I have a field called Rack which has the values as Rack-1 Rack-2 Rack-3....Rack-10. When I do sort on Rack field, it shows the values like below :

Rack-1
Rack-10
Rack-2
...
...
Rack-9

I want to show the values as : This is the requirement ?

Rack-1
Rack-2
Rack-3
...
...
Rack-10

By default, sort is showing Rack-10 after Rack-1 and then so on. How do I sort it alphanumeric to show the values as required above ?

Thanks
PG

0 Karma
1 Solution

renjith_nair
Legend

@pgadhari,

Try

Your current search | rex field=Rack "Rack-(?<_RackNo>\d+)"| sort _RackNo
Happy Splunking!

View solution in original post

0 Karma

harshpatel
Contributor

Hi @pgadhari,

You can use mvsort eval function like:

| eval Rack=mvsort(Rack)

pgadhari
Builder

I will check this and revert. Thanks.

0 Karma

pgadhari
Builder

This also works. Hence, upvoting the post. Thanks for your reply too.

0 Karma

renjith_nair
Legend

@pgadhari,

Try

Your current search | rex field=Rack "Rack-(?<_RackNo>\d+)"| sort _RackNo
Happy Splunking!
0 Karma

pgadhari
Builder

Thanks. This is working.

0 Karma

pgadhari
Builder

I will check this and revert. Thanks.

0 Karma
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...