-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
continuosly refresh if dashboard refresh time is set #101
Comments
Hi |
Not yet, and it's a pity that no one is interested in solving it. Unfortunatly I'm not able to do it :-( |
Hi @DonatoD,
In short, for your use-case, I would recommend storing those messages in a data store, like InfluxDB or similar, and let the auto-refresh work normally. |
Hi @ArchiZ0,yes thanks for the insight. Yes I know that, and for all this stuff I think that the best solution would be, if possible, to develop a configuration that allows that panel stop refreshing with the full dashboard. In this way the problem would be solved and it would open to a lots of other user's case |
The issue is a bit more complex than explained by @ArchiZ0. First of all, a page refresh does not reload the page. Panels on the page can retain a state during refresh (or change of dashboard variables / time range). Other transient data sources, e.g. Grafana Websocket Live Push, do survive the Autorefresh consistently. Here is an example of both next to each other: The Grafana Live Push data source has a "buffer" setting which can be set to Auto. I don't see why this could not be done with MQTT source as well. It is obviously a bit more work than just a quick fix. |
Hi, I'm trying to put a panel that receives MQTT data within a dashboard with traditional panels that send queries according to the refresh time interval set for the dashboard. This doesn't work properly: the MQTT panel is visible refreshed together with the others and all previous data are cancelled (the ones received before the refresh). Moreover, if the MQTT panel receives string data, it stops working after the first refresh.
So I cannot put togheter this panels in the same dashboard: the MQTT panel works only if I set to off the dashboard refresh interval, but in this way the other panels doesn't get updated, of course
The text was updated successfully, but these errors were encountered: