services.prometheus.exporters.dnssec.configuration

NixOS option

dnssec exporter configuration as nix attribute set. See https://github.com/chrj/prometheus-dnssec-exporter/blob/master/README.md for the description of the configuration file format.

type: null or (attribute set)
Default
null
Example
{
  records = [
    {
      zone = "ietf.org";
      record = "@";
      type = "SOA";
    }
    {
      zone = "verisigninc.com";
      record = "@";
      type = "SOA";
    }
  ];
}
declared in: nixos/modules/services/monitoring/prometheus/exporters.nixView source on NixOS/nixpkgs →