Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

v0.2.0

Compare
Choose a tag to compare
@a-feld a-feld released this 22 Apr 20:23
· 6 commits to master since this release

Breaking Changes

Argument order / signature for NewRelicStatsExporter and NewRelicTraceExporter has changed.

NewRelicStatsExporter(insert_key, service_name, host=None, interval=5) is now NewRelicStatsExporter(insert_key, service_name, interval=5, host=None, port=443)

NewRelicTraceExporter(insert_key, service_name, host=None, transport=DefaultTransport) is now NewRelicTraceExporter(insert_key, service_name, transport=DefaultTransport, host=None, port=443)

New Features

Port may now be overridden via argument to NewRelicStatsExporter and NewRelicTraceExporter (#10)

Both host and port parameters for HTTP communication with New Relic may now be overridden.

Add summary metric support for DistributionAggregation views (#9)

DistributionAggregation count and sum values are now reported as SummaryMetrics to New Relic.