From a0ac168bb64ba45733f4348465712a66e304efd8 Mon Sep 17 00:00:00 2001 From: Remy Mathieu Date: Fri, 10 Nov 2023 09:50:52 +0100 Subject: [PATCH] CHANGELOG: mention the telemetry parameter name change. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dede22..dd9c03b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -139,7 +139,7 @@ send your metrics. The `Statsd#batch` method has been deprecated from the API. 3. As of (1), the metrics are now buffered before being sent on the network, you have to use the `Statsd#flush` method to force their sending through the socket. Note that the companion thread will automatically flush the buffered metrics if the buffer gets full or when you are closing the instance. -4. `Statsd#initialize` parameter `max_buffer_bytes` has been renamed to `buffer_max_payload_size` for consistency with the new automatic batch strategy. Please note the addition of `buffer_max_pool_size` to limit the maximum amount of *messages* to buffer. +4. `Statsd#initialize` parameter `max_buffer_bytes` has been renamed to `buffer_max_payload_size` for consistency with the new automatic batch strategy. Please note the addition of `buffer_max_pool_size` to limit the maximum amount of *messages* to buffer. `disable_telemetry` has been renamed `telemetry_enable`, please note the semantic inversion. What would have been written this way with the v4 API: