Dashboards & Visualizations

How to present eventstats as timechart?

Marco204
Explorer

Hi there,

so I have a search which contains the field myMetric (done within field extraction).

I want to show a dashboard panel presenting only myMetrics on the y-axis and time on the x-axis.

I fail using "| timechart" since I am forced to use a statistic function or count (I want to show myMetric, not the count).

Using "| eventstats" my first problem was that the dashboard legend shows way to many fields, but I was able to remove them using "| fields -a,b,c". But the x-axis is labeled with "Time" instead of showing concrete datetimes.

So how can I archive this?

Labels (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

timechart, eventstats, stats, streamstats, and chart all require an aggregating function.  If the field being graphed is discrete enough (1 value per interval) then values(myMetric) should do the job.  Otherwise, use max(), min(), or avg(), whichever is most appropriate.

A possible alternative is the xyseries command, which converts selected fields into a format suitable for graphing.

 

<<your search to obtain 'myMetric'>>
| eval label="some text"
| xyseries _time label myMetric

 

 

---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

timechart, eventstats, stats, streamstats, and chart all require an aggregating function.  If the field being graphed is discrete enough (1 value per interval) then values(myMetric) should do the job.  Otherwise, use max(), min(), or avg(), whichever is most appropriate.

A possible alternative is the xyseries command, which converts selected fields into a format suitable for graphing.

 

<<your search to obtain 'myMetric'>>
| eval label="some text"
| xyseries _time label myMetric

 

 

---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...