Splunk Search

How to convert a chart back to its original format?

jkalyanasundara
New Member

I have the following SPL:

some search | table _time, col1, col2 | timechart span=2m useother=f values(col2) as col2 by col1 | fillnull value=0 

This creates a separate column for each value in col1. I now want to convert this data back into the original format i.e. a table in the format |_time|col1|col2|. I'm basically using the time chart command to fill in null values for every timestamp that had no value associated with it in the original data.

Is there any way I can do this ? I guess a better way would be to not use a time chart, but I'm not sure how. Not using a time chart give me the advantage of working with all the values of col1 (rather than only 10 as in the case of time chart)

0 Karma
1 Solution

somesoni2
Revered Legend

Since you want to fillnull for period you don't have data, timechart makes sense. You can overcome that 10 value limit by passing limit=50 or limi=100 to your timechart command. All you need after that is untable command. Try something like this

some search | table _time, col1, col2 | timechart span=2m useother=f values(col2) as col2 by col1 limit=50  | fillnull value=0
| untable _time col1 col2

View solution in original post

somesoni2
Revered Legend

Since you want to fillnull for period you don't have data, timechart makes sense. You can overcome that 10 value limit by passing limit=50 or limi=100 to your timechart command. All you need after that is untable command. Try something like this

some search | table _time, col1, col2 | timechart span=2m useother=f values(col2) as col2 by col1 limit=50  | fillnull value=0
| untable _time col1 col2
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...

Index This | How many sevens are there between 1 and 100?

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