16 lines
270 B
Nix
16 lines
270 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
services.prometheus.exporters.dovecot = {
|
|
enable = true;
|
|
};
|
|
|
|
services.victoriametrics.extraScrapeConfigs = [
|
|
''
|
|
- job_name: "dovecot-exporter"
|
|
static_configs:
|
|
- targets: ['localhost:9166']
|
|
''
|
|
];
|
|
}
|