nixos/datadog-agent: Fix type of use_dogstatsd (#45587)

authored by Sarah Brofeldt and committed by xeji 8f61e96c 519012bc

+1 -1
+1 -1
nixos/modules/services/monitoring/datadog-agent.nix
··· 11 api_key = ""; 12 confd_path = "/etc/datadog-agent/conf.d"; 13 additional_checksd = "/etc/datadog-agent/checks.d"; 14 - use_dogstatsd = "yes"; 15 } 16 // optionalAttrs (cfg.logLevel != null) { log_level = cfg.logLevel; } 17 // optionalAttrs (cfg.hostname != null) { inherit (cfg) hostname; }
··· 11 api_key = ""; 12 confd_path = "/etc/datadog-agent/conf.d"; 13 additional_checksd = "/etc/datadog-agent/checks.d"; 14 + use_dogstatsd = true; 15 } 16 // optionalAttrs (cfg.logLevel != null) { log_level = cfg.logLevel; } 17 // optionalAttrs (cfg.hostname != null) { inherit (cfg) hostname; }