Splunk Search

How to rearrange columns in a timechart result?

Allampally
Path Finder

Hi,

I have a timechart result with two columns as shown in the 1st screenshot.
Hour column contain a count for each hour. I want to rearrange this table as shown in the "result" screenshot

alt text
alt text

0 Karma
1 Solution

datasearchninja
Communicator

To be explicit on the bin, you could replace your timechart command with:

| bin _time span=1h
| stats count by _time

Either way, after this calculate the day and hour values, and then populate a table:

| eval day=strftime(_time, "%m/%d/%Y") 
| eval hour=strftime(_time, "%H:%M") 
| maketable hour day count

View solution in original post

0 Karma

harishalipaka
Motivator

add this end of your quer..

| transpose header_field=day 
| fields - column
Thanks
Harish
0 Karma

datasearchninja
Communicator

To be explicit on the bin, you could replace your timechart command with:

| bin _time span=1h
| stats count by _time

Either way, after this calculate the day and hour values, and then populate a table:

| eval day=strftime(_time, "%m/%d/%Y") 
| eval hour=strftime(_time, "%H:%M") 
| maketable hour day count
0 Karma
Get Updates on the Splunk Community!

Index This | Why did the turkey cross the road?

November 2025 Edition  Hayyy Splunk Education Enthusiasts and the Eternally Curious!   We’re back with this ...

Enter the Agentic Era with Splunk AI Assistant for SPL 1.4

  🚀 Your data just got a serious AI upgrade — are you ready? Say hello to the Agentic Era with the ...

Feel the Splunk Love: Real Stories from Real Customers

Hello Splunk Community,    What’s the best part of hearing how our customers use Splunk? Easy: the positive ...