Splunk Search

Sorting data on basis of date and date_hour

Aakanksha
Path Finder

I have 1 week data uploaded in SPLUNK.

I a sorting it on weekly as well as daily basis. Query is as follow:

...
|chart limit=0 avg(KPI) by date, date _hour| sort - date _hour

However, the result is not sorted on date_hour.
How can this be resolved?

Tags (1)
0 Karma
1 Solution

dart
Splunk Employee
Splunk Employee

You need to have your rows as the field you want to sort by:

sourcetype=access_combined | chart count by date_hour,date_mday | sort date_hour

Otherwise if you're looking to sort your columns in order, try this:

sourcetype=access_combined | chart count by date_mday,date_hour | table date_mday 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

I didn't have a date or KPI field in my data, so the examples use just the count function and date_mday (day of month) instead.

View solution in original post

dart
Splunk Employee
Splunk Employee

You need to have your rows as the field you want to sort by:

sourcetype=access_combined | chart count by date_hour,date_mday | sort date_hour

Otherwise if you're looking to sort your columns in order, try this:

sourcetype=access_combined | chart count by date_mday,date_hour | table date_mday 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

I didn't have a date or KPI field in my data, so the examples use just the count function and date_mday (day of month) instead.

Aakanksha
Path Finder

No,it is just here in the post. In search query it is like - ... | sort - date_hour

0 Karma

Ayn
Legend

Do you really have a space between "date" and "_hour" in your search or is it just in your post here on splunkbase?

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...