services.prometheus.alertmanagers
NixOS option
A list of alertmanagers to send alerts to. See the official documentation for more information.
type: list of (attribute set)Default
[ ]
Example
declared in: nixos/modules/services/monitoring/prometheus/default.nixView source on NixOS/nixpkgs →[ {
scheme = "https";
path_prefix = "/alertmanager";
static_configs = [ {
targets = [
"prometheus.domain.tld"
];
} ];
} ]