Skip to content

Commit

Permalink
Merge pull request #3635 from DataDog/scottdixon/pdh_tags_fix
Browse files Browse the repository at this point in the history
Fix issue with creating tags from conf in IIS
  • Loading branch information
dixonscottr authored Jan 12, 2018
2 parents 28a8546 + be9ceb8 commit b3d8458
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checks/libs/win/pdhbasecheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def __init__(self, name, init_config, agentConfig, instances, counter_list):

cfg_tags = instance.get('tags')
if cfg_tags is not None:
tags = cfg_tags.join(",")
tags = ",".join(cfg_tags)
self._tags[key] = list(tags) if tags else []
remote_machine = None
host = instance.get('host')
Expand Down

0 comments on commit b3d8458

Please sign in to comment.