Files
nixcfg/modules/monitoring/default.nix
2023-09-12 22:57:19 +01:00

35 lines
496 B
Nix

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