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
[ {
  scheme = "https";
  path_prefix = "/alertmanager";
  static_configs = [ {
    targets = [
      "prometheus.domain.tld"
    ];
  } ];
} ]
declared in: nixos/modules/services/monitoring/prometheus/default.nixView source on NixOS/nixpkgs →