Releases: Stackdriver/stackdriver-statsd-backend
0.2.5 Release
0.2.4 Release
Merged two pull requests:
- Fix swapped min/max activation arguments
- Remove logging statement to be consistent
0.2.3 Release
Responding to a user-reported issue. Thanks for the feedback!
When a timer value wasn't sent within a collection interval (60 seconds) the counter and rate values would be zero, and the aggregates (sum/avg/min/max/percentiles) would be undefined. Those would cause a malformed message to the Stackdriver gateway, which would be rejected.
This patch checks for those undefined values. It also adds an option sendZeroTimersAndRates to the Stackdriver module configuration. Setting this option to false will cause zero valued counters and rates (in both counter and timer variables) to not be sent. By default, statsd (and this plugin) will continue to send those variables as zero to keep a continuous series.
0.2.2 Release
Responding to an issue with the name prefixing not working, the default delmiter has been updated to a double-hyphen. If overriding there is a very restrictive regex on characters:
.replace(/[^a-zA-Z_-0-9.]/g, '')
0.2.1 Release
Minor update for variable scoping in the auto-detect routine. Thanks for the pull request!
0.2.0 Release
Add a number of requested/contributed features. Thanks to all of our community!
- Support the statsd 'set' type which counts the number of distinct values sent in a period
- Flags to enable/disable particular sub-metrics from publishing.
- Configure source parameter from prefix to allow one statsd to serve multiple instances
- Auto-detect EC2 or GCE instance ID for source, by setting to detect-aws or detect-gce
- Optionally send percentile values configured in config.percentThreshold (statsd standard location for this)
0.1.5 Release
Merged pull request to fix instance association.
0.1.4 Release
Fix a user-reported bug in a logging statement
0.1.3 Release
Fix Content-Length setting, update some things internally to be cleaner and less repetitive.
0.1.1 release
Update to installation and configuration documents for clarity.