24 lines
355 B
Nix
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"];
|
|
}];
|
|
}
|
|
];
|
|
};
|
|
}
|