service/blackbox: init

This commit is contained in:
Felix Buehler 2023-06-25 21:25:55 +02:00
parent 1b5e41e7ad
commit d4fa5996ae
6 changed files with 1034 additions and 0 deletions

View file

@ -124,6 +124,7 @@ in
}).overrideAttrs (self: super: {
src = ./prometheus.json; # sadly only imported dashboards work
});
grafana = (buildGrafanaDashboard {
id = 3590;
pname = "grafana";
@ -131,4 +132,13 @@ in
}).overrideAttrs (self: super: {
src = ./grafana.json; # sadly only imported dashboards work
});
blackbox = (buildGrafanaDashboard {
id = 13659;
pname = "blackbox";
version = "1";
hash = "sha256-nnBFWFDAqKUqTOYxOrkRPlVla4ioQZ6rqEqakdzUj1Q=";
}).overrideAttrs (self: super: {
src = ./blackbox.json; # sadly only imported dashboards work
});
})