nix-dotfiles/hosts/tsuki/services/grafana/prometheus.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
412 B
Nix

{ secrets, ... }: {
# TODO: Autogenerate port infrastructure
imports = [
./prometheus-exporters/matrix-synapse.nix
./prometheus-exporters/node.nix
./prometheus-exporters/postgres.nix
./prometheus-exporters/redis.nix
./prometheus-exporters/systemd.nix
./prometheus-exporters/minecraft.nix
];
services.prometheus = {
enable = true;
port = secrets.ports.prometheus;
};
}