From 67f57eb773b9878007dd49f26cb73888d17ffd3c Mon Sep 17 00:00:00 2001 From: Mike Perham Date: Tue, 12 Dec 2017 09:10:55 -0800 Subject: [PATCH] 3.6 --- Pro-Changes.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Pro-Changes.md b/Pro-Changes.md index b8a474f1..9e39838a 100644 --- a/Pro-Changes.md +++ b/Pro-Changes.md @@ -4,6 +4,27 @@ Please see [http://sidekiq.org/](http://sidekiq.org/) for more details and how to buy. +3.6.0 +--------- + +This release overhauls the Statsd metrics support and adds more +metrics for tracking Pro feature usage. In your initializer: +```ruby +Sidekiq::Pro.statsd = ->{ ::Statsd.new("127.0.0.1", 8125) } +``` +Sidekiq Pro will emit more metrics to Statsd: +``` +jobs.expired - when a job is expired +jobs.recovered.push - when a job is recovered by reliable_push after network outage +jobs.recovered.fetch - when a job is recovered by super_fetch after process crash +batch.created - when a batch is created +batch.complete - when a batch is completed +batch.success - when a batch is successful +``` +Sidekiq Pro's existing Statsd middleware has been rewritten to leverage the new API. +Everything should be backwards compatible with one deprecation notice. + + 3.5.4 ---------