services.prometheus.exporters.idrac.configuration

NixOS option

Configuration for iDRAC exporter, as a nix attribute set. Configuration reference: https://github.com/mrlhansen/idrac_exporter/#configuration Mutually exclusive with configurationPath option.

type: null or (attribute set)
Default
null
Example
{
  hosts = {
    default = {
      password = "password";
      username = "username";
    };
  };
  metrics = {
    memory = true;
    power = true;
    sel = true;
    sensors = true;
    storage = true;
    system = true;
  };
  retries = 1;
  timeout = 10;
}
declared in: nixos/modules/services/monitoring/prometheus/exporters.nixView source on NixOS/nixpkgs →