MyNixOS website logo
option

services.prometheus.alertmanagers

A list of alertmanagers to send alerts to. See the official documentation for more information.

Declarations
Type
list of (attribute set)
Default
[ ]
Example
[ {
  scheme = "https";
  path_prefix = "/alertmanager";
  static_configs = [ {
    targets = [
      "prometheus.domain.tld"
    ];
  } ];
} ]