Skip to content

Commit

Permalink
agent config lookup true by default
Browse files Browse the repository at this point in the history
  • Loading branch information
David Bouchare committed Aug 19, 2019
1 parent 5a14086 commit 1153e6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions datadog/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ def initialize(api_key=None, app_key=None, host_name=None, api_host=None,
:param api_host: Datadog API endpoint
:type api_host: url
:param config_lookup: Hostname resolution using the Datadog agent configuration file
:type config_lookup: boolean
:param statsd_host: Host of DogStatsd server or statsd daemon
:type statsd_host: address
Expand Down
2 changes: 1 addition & 1 deletion datadog/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
_mute = True

# Agent config settings
config_lookup = False
config_lookup = True

# Resources
from datadog.api.comments import Comment
Expand Down

0 comments on commit 1153e6f

Please sign in to comment.