Grafana: Extend last data point to the right

Created on 7 Jul 2015  ·  3Comments  ·  Source: grafana/grafana

Hi @torkelo

I have a few metrics that are very slow moving (might change once a month or so). To avoid clogging up my OpenTSDB instance I only want to log these metrics when they change. In Grafana, I'm plotting them as a staircase line. However, the problem is that Grafana will only plot data up until the last data point (which is sensible). I was wondering if there is a way to extend the last value all the way to "now", a bit like this (red line drawn on):

grafanaexample

Would appreciate your help,
Jack

arepanegraph not implemented typfeature-request

Most helpful comment

SELECT field(..) last()
GROUP BY time($interval) fill(previous)
image

With this setting it works partially, but still: If there is no value in the zoomed range it doesn't query the last value before that range. For that there is no value shown at all.
image
This messes up dashboards with fast changing values (measured values) and status values (like switched on/off) because half of the status panels show just nothing when you choose a rather short range of time.

All 3 comments

I too would like such a feature, but only for staircase lines. For staircase it makes sense as the staircase shows a horizontal line following the last value up until the next value. Meaning that if this feature were implemented, then as time progresses and another data point comes in, that horizontal line will still be there, just extended further. The same cannot be said for non-staircase lines. The only way that the staircase line would be changed/shortened as new data comes in is if the new data is for the time period already shown in the window (meaning historical points are getting added). As such, I think it makes sense for the feature to be enabled by default.

SELECT field(..) last()
GROUP BY time($interval) fill(previous)
image

With this setting it works partially, but still: If there is no value in the zoomed range it doesn't query the last value before that range. For that there is no value shown at all.
image
This messes up dashboards with fast changing values (measured values) and status values (like switched on/off) because half of the status panels show just nothing when you choose a rather short range of time.

I think this is best handled by OpenTSDB.

We are trying limit open GitHub issues in order to better track planned work or features we eventually hope to implement rather then enumerate all possible features.

I will close this issue since it's been open for very long time without much interest in the feature or anyone showing interest in implementing it.

This does not mean that we will never ever implement it or that we will never accept a PR for it. A closed issue can still attract up votes and act as a ticket to track feature demand/interest.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

yuvaraj951 picture yuvaraj951  ·  3Comments

deepujain picture deepujain  ·  3Comments

PaulKlumpp picture PaulKlumpp  ·  3Comments

SATHVIKRAJU picture SATHVIKRAJU  ·  3Comments

jackmeagher picture jackmeagher  ·  3Comments