Templating: Remove repeated panels and rows from save model #27028
Comments
For variables that have refresh on "Dashboard Load", or time range change we can clean and remove options before saving |
If anyone wants to help with this: Here is where the save model is built |
actually this is already implemented: If the refresh is on dashoard load or time the values are never saved in the dashboard model |
Actually to solve this just call cleanUpRepeats: |
Or maybe not use that. Simplest is filter out rows and panels with repeat and a sourceId https://github.com/grafana/grafana/blob/master/public/app/features/dashboard/state/DashboardModel.ts#L205 |
Any estimate when this gets fixed. 2min freeze make Grafana 7.x usage painful. |
Add test for removing repeated panels.
What happened:
Large Grafana dashboards are often based on
Outcome is that dashboard is fully dynamic, configuration changed when time range is changed or any row is expanded/collapsed.
Currently when dashboard is saved the template variable values are also stored. This means that configuration file contain all template variable values when multi is enabled and custom all value is for example ".*", otherwise it contain selected values or default value (first or all).
In addition each panel configuration contain resolved template variable values instead of just template agnostic configuration like when template variable values would be empty.
When repeating panels are used then first panel contain repeated panel config and for each repeated panel new panel config refer to parent is created. Parent contains the first template variable and each repeated panel contains different resolved variable name. This approach is probably desired when panels are always visible.
However when rows are used the behavior change. When repeating panels under row (not repeating row) are used and row is collapsed the panel configuration is not updated as template variables changes. This is correct behavior because it is not possible to update all hidden panels all the time, dashboard would become unresponsive.
When row is expanded the config is correctly dynamically updated regardless of the current config as it is always wrong.
In dashboard save however the config is mixed because some rows contain config it had last time it was expanded, some rows are up to date but collapsed and maybe some rows are expanded.
If user expanded row at time range A when it contained 100 repeated panel the all 100 panels with variable are saved, the saved values are only valid for specific time range A, when time range change to B the panel configuration is out of date.
When dashboard is saved there are two options
I have not seen "any" behavior change if "Save current variable values as dashboard default" is checked or unchecked. Seems that dashboard always saves all template variables and panels using template variables even when option in "unchecked".
Currently dashboard size becomes unnecessary large when collapsed rows contain large number of dynamic repeating panel are saved, and normally panel config is outdated anyway when everything is dynamic.
What you expected to happen:
There should be option to save dashboard without template variables vales (large dashboards with dynamic template variables), not sure if small static dashboard without rows and dynamic repeating panels need saving option not to update template variables.
This would reduce the size of the dashboard and make loading faster. There is no value saving outdated wrong config.
How to reproduce it (as minimally and precisely as possible):
Just create dashboard with template variables, rows and repeating panes which use template variable for repeat.
Environment:
Example row config with repeating panels (two repeating panels due template variable $serviceall has values service-v1 and service-2)
The text was updated successfully, but these errors were encountered: