snowflake/hosts/arashi/services/exporters.nix
notohh 2c9ee605b4
All checks were successful
flake check / check (push) Successful in 4m22s
fmt check / check (push) Successful in 57s
arashi: init exporters
2024-01-17 08:53:41 -05:00

14 lines
227 B
Nix

_: {
services.prometheus.exporters.redis = {
enable = true;
openFirewall = true;
port = 9002;
};
services.prometheus.exporters.postgres = {
enable = true;
openFirewall = true;
port = 9003;
};
}