services.prometheus.exporters.snmp.configuration

NixOS option

Snmp exporter configuration as nix attribute set. Mutually exclusive with ‘configurationPath’ option.

type: null or (attribute set)
Default
null
Example
{
  auths = {
    public_v2 = {
      community = "public";
      version = 2;
    };
  };
}
declared in: nixos/modules/services/monitoring/prometheus/exporters.nixView source on NixOS/nixpkgs →