Reports
You will now learn reporting commands that are used to format the data so that it can be visualized using various visualizations available on Splunk. Reporting commands are transforming commands that transform event data returned by searches in tables that can be used for visualizations.
The makecontinuous command
The Splunk command makecontinuous
is used to make x-axis field continuous to plot it for visualization. This command adds empty buckets for the period where no data is available. Once the specified field is made continuous, then charts
/stats
/timechart
commands can be used for graphical visualizations.
The syntax for the makecontinuous
command is as follows:
… | makecontinous Field_name bin_options
The parameter description of the makecontinuous
command is as follows:
Field_name
: The name of the field that is to be plotted on the x axis can be specified.Bin_Options
: This parameter can be used to specify the options for discretization. This is a required parameter and...