diff --git a/Ent-Changes.md b/Ent-Changes.md index aaf54ec4..c51f6477 100644 --- a/Ent-Changes.md +++ b/Ent-Changes.md @@ -4,9 +4,14 @@ Please see [sidekiq.org](https://sidekiq.org) for more details and how to buy. -HEAD +2.1.0 ------------- +- Move historical metrics to use tags rather than interpolating name [#4377] +``` +sidekiq.enqueued.#{name} -> sidekiq.queue.size with tag queue:#{name} +sidekiq.latency.#{name} -> sidekiq.queue.latency with tag queue:#{name} +``` - Remove `concurrent-ruby` gem dependency [#4586] - Add systemd `Type=notify` support for swarm [#4511] - Length swarm's boot timeout to 60 sec [#4544] diff --git a/Pro-Changes.md b/Pro-Changes.md index 335e3b64..fc51fd41 100644 --- a/Pro-Changes.md +++ b/Pro-Changes.md @@ -4,9 +4,15 @@ Please see [sidekiq.org](https://sidekiq.org/) for more details and how to buy. -HEAD +5.1.0 --------- +- Remove old Statsd metrics with `WorkerName` in the name [#4377] +``` +job.WorkerName.count -> job.count with tag worker:WorkerName +job.WorkerName.perform -> job.perform with tag worker:WorkerName +job.WorkerName.failure -> job.failure with tag worker:WorkerName +``` - Remove `concurrent-ruby` gem dependency [#4586] - Update `constantize` for batch callbacks. [#4469] - Add queue tag to `jobs.recovered.fetch` metric [#4594]