nix-dotfiles/hosts/tsuki/services/grafana/prometheus-exporters/redis.nix
h7x4 45497aea2b
tsuki: set up proper grafana infrastructure
- Set up a bunch of exporters
- Download matching dashboard declarations
- Remove influxdb
2023-01-20 19:55:52 +01:00

18 lines
282 B
Nix

{ ... }:
{
services.prometheus = {
scrapeConfigs = [{
job_name = "redis";
scrape_interval = "15s";
static_configs = [{
targets = [ "localhost:10394" ];
}];
}];
exporters.redis = {
enable = true;
port = 10394;
};
};
}