Add postgres exporter

This commit is contained in:
Ilya K 2024-07-05 15:51:26 +03:00 committed by Ilya K
parent 42f8ad8fa4
commit 03cb9c390c
4 changed files with 10312 additions and 0 deletions

View file

@ -10,6 +10,7 @@ in
imports = [
./baseline.nix
./nginx.nix
./postgres.nix
];
options.bagel = {

View file

@ -0,0 +1,31 @@
{
config,
lib,
...
}:
let
cfg = config.bagel.monitoring.exporters.postgres;
inherit (lib) mkEnableOption mkIf;
in
{
options.bagel.monitoring.exporters.postgres.enable = (mkEnableOption "Postgres exporter") // { default = config.services.postgresql.enable; };
config = mkIf cfg.enable {
services.prometheus.exporters.postgres = {
enable = true;
port = 9104;
runAsLocalSuperUser = true;
extraFlags = [
"--collector.long_running_transactions"
"--collector.stat_activity_autovacuum"
"--collector.stat_statements"
];
};
services.postgresql.settings.shared_preload_libraries = "pg_stat_statements";
bagel.meta.monitoring.exporters = [
{ port = 9104; }
];
};
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff