grafana: remove http prefix for postgres

This commit is contained in:
Bloxx12 2025-04-29 13:57:19 +02:00
commit 39e2eefd98

View file

@ -62,7 +62,7 @@ in {
name = "PostgreSQL"; name = "PostgreSQL";
type = "postgres"; type = "postgres";
access = "proxy"; access = "proxy";
url = "http://127.0.0.1:${toString config.services.prometheus.exporters.postgres.port}"; url = "127.0.0.1:${toString config.services.prometheus.exporters.postgres.port}";
}) })
]; ];
}; };