I need to export dashboards/panels from Grafana to my website. I’ve found your tutorial for Prometheus and Grafana setup which works very well, but does not contain this feature in its configuration.
I found that I need to set allow_embedding
to true
, but don’t know how to achieve that in nixos.
I’ve tried to add:
services.grafana.extraOptions = {
allow_embedding = "true";
};
to my .nix config file, but nothing has changed in grafana settings after nixos-rebuild switch.
Has anyone experiences with this?