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!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...