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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...