Skip to content

Commit

Permalink
dd-agent: fix multiple tags in the config file
Browse files Browse the repository at this point in the history
(cherry picked from commit 0ee6f86)
Signed-off-by: Domen Kožar <domen@dev.si>
  • Loading branch information
cleverca22 authored and domenkozar committed Oct 6, 2017
1 parent d652013 commit 91a4d26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/monitoring/dd-agent/dd-agent.nix
Expand Up @@ -23,7 +23,7 @@ let
# proxy_password: password
# tags: mytag0, mytag1
${optionalString (cfg.tags != null ) "tags: ${concatStringsSep "," cfg.tags }"}
${optionalString (cfg.tags != null ) "tags: ${concatStringsSep ", " cfg.tags }"}
# collect_ec2_tags: no
# recent_point_threshold: 30
Expand Down

0 comments on commit 91a4d26

Please sign in to comment.