What's Changed
🚨The jobDurationTimer
metric has been updated to use milliseconds rather than seconds.
Add Meter for in-progress jobs by @ptoffy in #139
This adds a
Meter
metric to record the number of jobs currently being processed by a worker.
The gauge also allows calculation of not yet processed but enqueued jobs, since we can now donotYetProcessedJobs = dispatchedJobsCount - (errorCompleted + successCompleted) - inProgressJobs
Reviewers
Thanks to the reviewers for their help:
This patch was released by @ptoffy
Full Changelog: 1.16.1...1.17.0