You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Grafana Operator allows provisioining of Grafana Dashboards with K8s CRD and actual dashboard json model is stored in ConfigMap. ConfigMap has a size limit 1 Mb, which can be problematic for large dashboards.
Dashboard CRD supports storing gzipped json, but as far as I know - jsonnet doesn't have any facility for gzip.
The text was updated successfully, but these errors were encountered:
Hi :) Do you actually have a single dashboard that is larger than 1MB? Implementing a native function for adding gzip support is slightly problematic as that function would then only be available in the native (Go) interpreter but not in rsjsonnet et al, which some folks use in specific scenarios.
Motivation
Grafana Operator allows provisioining of Grafana Dashboards with K8s CRD and actual dashboard json model is stored in ConfigMap. ConfigMap has a size limit 1 Mb, which can be problematic for large dashboards.
Dashboard CRD supports storing gzipped json, but as far as I know - jsonnet doesn't have any facility for gzip.
The text was updated successfully, but these errors were encountered: