Splunk Search

How to remove white space to the right of the time chart?

wills2g
New Member

Hi All,

When using the line chart visualisation with a timechart command, there is additional white space to the right (later times) of the right most value on the x axis. Is there any way to make the line chart end on the final date in the data rather than extend more to the right (where there is no data)?

Cheers.

0 Karma
1 Solution

renjith_nair
Legend

Hi @wills2g,

Either you could reduce the time range to fit your timechart to display only available data or you could use fixedrange=false (Specify whether or not to enforce the earliest and latest times of the search. Setting fixedrange=false allows the timechart command to constrict to just the time range with valid data. )

http://docs.splunk.com/Documentation/Splunk/7.1.1/SearchReference/Timechart#Optional_arguments

Happy Splunking!

View solution in original post

0 Karma

niketn
Legend

@wills2g have you tried cont=for else used stats command with bin so that it shows only data points where values are present?

<yourBaseSearch>
| timechart span=1d count cont=f

Or

<yourBaseSearch>
| bin _time span=1d
| stats count by _time

Other round-about option would be to takeout time buckets with 0 count i.e.

<yourBaseSearch>
| timechart span=1d count
| fillnull value=0 count
| search count!=0

Final option (still roundabout) would be to get the max _timestamp where data is present and filter out _time > maxTime.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

renjith_nair
Legend

Hi @wills2g,

Either you could reduce the time range to fit your timechart to display only available data or you could use fixedrange=false (Specify whether or not to enforce the earliest and latest times of the search. Setting fixedrange=false allows the timechart command to constrict to just the time range with valid data. )

http://docs.splunk.com/Documentation/Splunk/7.1.1/SearchReference/Timechart#Optional_arguments

Happy Splunking!
0 Karma

wills2g
New Member

Thanks for the reply. The primary issue is that the x-axis is getting extended beyond the latest time/value pair so that to the right of the last data point, it's just blank space.

For example, http://docs.splunk.com/File:7.1.0_timechartViews-compressor.png, the visualisation extends past where the data ends.

0 Karma

renjith_nair
Legend

okie, did you try fixedrange=false in your timechart and does it work?

Happy Splunking!
0 Karma

wills2g
New Member

Yeah, I tried that but it still extends the values past the final x-axis value. Would you have any other ideas?

0 Karma

renjith_nair
Legend

you could also use cont as mentioned in http://docs.splunk.com/Documentation/Splunk/7.1.1/SearchReference/Timechart#Optional_arguments but this will omit the '0' valued fields. Do you have a sample spl to try that?

Happy Splunking!
0 Karma
Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

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