Skip to content

Commit

Permalink
remove extended aggregation
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewqian2001datadog committed Jan 6, 2025
1 parent a442722 commit 5d872a3
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions datadog/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ def initialize(
statsd_host=None, # type: Optional[str]
statsd_port=None, # type: Optional[int]
statsd_disable_aggregation=True, # type: bool
statsd_disable_extended_aggregation=True, # type: bool
statsd_disable_buffering=True, # type: bool
statsd_aggregation_flush_interval=0.3, # type: float
statsd_use_default_route=False, # type: bool
Expand Down Expand Up @@ -83,10 +82,6 @@ def initialize(
(default: True).
:type statsd_disable_aggregation: boolean
:param statsd_disable_extended_aggregation: Enable/disable statsd client aggregation support for histograms, distributions and timing metrics
(default: True).
:type statsd_disable_extended_aggregation: boolean
:param statsd_aggregation_flush_interval: If aggregation is enabled, set the flush interval for
aggregation/buffering
(default: 0.3 seconds)
Expand Down Expand Up @@ -148,10 +143,6 @@ def initialize(
statsd.disable_aggregation()
else:
statsd.enable_aggregation(statsd_aggregation_flush_interval)
if statsd_disable_extended_aggregation:
statsd.disable_extended_aggregation()
else:
statsd.enable_extended_aggregation(statsd_aggregation_flush_interval)
statsd.disable_buffering = statsd_disable_buffering
api._return_raw_response = return_raw_response

Expand Down

0 comments on commit 5d872a3

Please sign in to comment.