summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorJohn Soo <john@consumable.com>2021-09-09 08:06:15 -0700
committerJohn Soo <john@consumable.com>2021-09-11 15:32:14 -0700
commita51ee771bed2449b0afe0f562844da3a5a4330bf (patch)
treeaae29ef2670ae19a74a54e684997a1445bea5850 /nixos
parentcdae1d60d15491a9fbac877ddff67dfe6d6f1b84 (diff)
nixos/datadog-agent: Update process collection binary.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/monitoring/datadog-agent.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/monitoring/datadog-agent.nix b/nixos/modules/services/monitoring/datadog-agent.nix
index b25a53435d06..ea9eca180902 100644
--- a/nixos/modules/services/monitoring/datadog-agent.nix
+++ b/nixos/modules/services/monitoring/datadog-agent.nix
@@ -51,7 +51,7 @@ in {
options.services.datadog-agent = {
enable = mkOption {
description = ''
- Whether to enable the datadog-agent v6 monitoring service
+ Whether to enable the datadog-agent v7 monitoring service
'';
default = false;
type = types.bool;
@@ -61,7 +61,7 @@ in {
default = pkgs.datadog-agent;
defaultText = "pkgs.datadog-agent";
description = ''
- Which DataDog v6 agent package to use. Note that the provided
+ Which DataDog v7 agent package to use. Note that the provided
package is expected to have an overridable `pythonPackages`-attribute
which configures the Python environment with the Datadog
checks.
@@ -274,7 +274,7 @@ in {
path = [ ];
script = ''
export DD_API_KEY=$(head -n 1 ${cfg.apiKeyFile})
- ${pkgs.datadog-process-agent}/bin/agent --config /etc/datadog-agent/datadog.yaml
+ ${pkgs.datadog-process-agent}/bin/process-agent --config /etc/datadog-agent/datadog.yaml
'';
});