README.md in yabeda-sidekiq-0.2.0 vs README.md in yabeda-sidekiq-0.5.0
- old
+ new
@@ -1,9 +1,11 @@
# Yabeda::[Sidekiq]
Built-in metrics for [Sidekiq] monitoring out of the box! Part of the [yabeda] suite.
+Sample Grafana dashboard ID: [11667](https://grafana.com/grafana/dashboards/11667)
+
## Installation
```ruby
gem 'yabeda-sidekiq'
# Then add monitoring system adapter, e.g.:
@@ -29,10 +31,11 @@
- Total number of executed jobs: `sidekiq_jobs_executed_total` - (segmented by queue and class name)
- Number of jobs have been finished successfully: `sidekiq_jobs_success_total` (segmented by queue and class name)
- Number of jobs have been failed: `sidekiq_jobs_failed_total` (segmented by queue and class name)
- Time of job run: `sidekiq_job_runtime` (seconds per job execution, segmented by queue and class name)
- - Time of the queue latency `sidekiq_jobs_latency` (the difference in seconds since the oldest job in the queue was enqueued)
+ - Time of the queue latency `sidekiq_queue_latency` (the difference in seconds since the oldest job in the queue was enqueued)
+ - Time of the job latency `sidekiq_job_latency` (the difference in seconds since the enqueuing until running job)
- Number of jobs in queues: `sidekiq_jobs_waiting_count` (segmented by queue)
- Number of scheduled jobs:`sidekiq_jobs_scheduled_count`
- Number of jobs in retry set: `sidekiq_jobs_retry_count`
- Number of jobs in dead set (“morgue”): `sidekiq_jobs_dead_count`
- Active workers count: `sidekiq_active_processes`