From 3ce6ce149e8f9c27367c94c3c024ab04be89e7eb Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Sun, 18 May 2014 13:00:33 +0200 Subject: Fix dogstatsd, needs procps in path. (cherry picked from commit ecdb0f7867007b2e5ae0d14a0994d3b502d90fa7) --- nixos/modules/services/monitoring/dd-agent.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nixos/modules/services') diff --git a/nixos/modules/services/monitoring/dd-agent.nix b/nixos/modules/services/monitoring/dd-agent.nix index 5794ee7fe534..deef64d69981 100644 --- a/nixos/modules/services/monitoring/dd-agent.nix +++ b/nixos/modules/services/monitoring/dd-agent.nix @@ -129,7 +129,7 @@ in { systemd.services.dogstatsd = { description = "Datadog statsd"; - path = [ pkgs."dd-agent" pkgs.python ]; + path = [ pkgs."dd-agent" pkgs.python pkgs.procps ]; wantedBy = [ "multi-user.target" ]; serviceConfig = { ExecStart = "${pkgs.dd-agent}/bin/dogstatsd start"; -- cgit 1.4.1