Splunk Enterprise

Timechart Sort Asc/Desc

kavyakanne
Engager

After timechart can the columns be sorted either in Ascending/Descending order

 

 

Labels (2)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

You need to have your column named numerically, then transpose, sort, and transpose back again. If you need to you can reset the numeric values after the sort

| makeresults count=5000
| eval response=random()%30
| streamstats count as row 
| eval _time=_time-(row%60)*60
| timechart limit=0 useother=f count by response



| transpose 0 header_field=_time
| sort 0 column
| where column!="_span"
| transpose 0 header_field=column column_name=_time

View solution in original post

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

You need to have your column named numerically, then transpose, sort, and transpose back again. If you need to you can reset the numeric values after the sort

| makeresults count=5000
| eval response=random()%30
| streamstats count as row 
| eval _time=_time-(row%60)*60
| timechart limit=0 useother=f count by response



| transpose 0 header_field=_time
| sort 0 column
| where column!="_span"
| transpose 0 header_field=column column_name=_time
0 Karma

kavyakanne
Engager

ok!

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Try the solution I proposed - transpose, sort, (remove system-generated field), transpose

0 Karma

johnhuang
Motivator

When you generate the hour range, convert 1 digit hour to 2 digit, e.g. 00-01, 01-02, etc.

0 Karma
Get Updates on the Splunk Community!

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

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 ...