forked from the-distro/infra
emily
8d2a367e92
This allows us to use multiple jobs, one for each additional exporter, and set their `job_name` accordingly. `job_name` is exported as `job` label on the resulting metrics. This allows us to quickly get an understanding what metrics of an exporter are actually available by simply filtering all metrics by `{job="$jobname"}`
29 lines
749 B
Nix
29 lines
749 B
Nix
{
|
|
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.monitoring.grafana-agent.exporters.postgres.port = 9104;
|
|
};
|
|
} |