File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ The queue latency is the time between when the job was enqueued and when it was
87
87
filter environment = " production"
88
88
filter level = " info"
89
89
filter metric = " sidekiq.queue.latency"
90
- timechart duration : avg(duration ), group_by(name)
90
+ timechart latency : avg(metric_amount ), group_by(name)
91
91
~~~
92
92
93
93
* http://github.com/reidmorrison/rails_semantic_logger
@@ -100,8 +100,12 @@ For complete documentation see: https://logger.rocketjob.io/rails
100
100
101
101
Rails Semantic Logger now supports Sidekiq metrics.
102
102
Below are the metrics that are now available when the JSON logging format is used:
103
- - ` sidekiq.job.perform ` - The duration of each Sidekiq job.
104
- - ` sidekiq.queue.latency ` - The time between when a Sidekiq job was enqueued and when it was started.
103
+ - ` sidekiq.job.perform `
104
+ - The duration of each Sidekiq job.
105
+ - ` duration ` contains the time in milliseconds that the job took to run.
106
+ - ` sidekiq.queue.latency `
107
+ - The time between when a Sidekiq job was enqueued and when it was started.
108
+ - ` metric_amount ` contains the time in milliseconds that the job was waiting in the queue.
105
109
106
110
## Upgrading to Semantic Logger v4.15 & V4.16 - Sidekiq Support
107
111
You can’t perform that action at this time.
0 commit comments