Files
nixcfg/hosts/dingserver/prometheus.nix
2022-04-12 20:48:45 +01:00

24 lines
355 B
Nix

{ config, pkgs, lib, ... }:
{
services.grafana = {
enable = true;
};
services.prometheus = {
enable = true;
exporters = {
};
scrapeConfigs = [
{
job_name = "synapse";
metrics_path = "/_synapse/metrics";
static_configs = [{
targets = ["localhost:9000"];
}];
}
];
};
}