1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #21091 from y-yagi/add_activejob_section_to_instrumentation_guide

add Active Job section to instrumentation guide [ci skip]
This commit is contained in:
Yves Senn 2015-08-24 13:33:32 +02:00
commit 5500e28eb3

View file

@ -395,6 +395,38 @@ INFO. Cache stores may add their own keys
}
```
Active Job
--------
### enqueue_at.active_job
| Key | Value |
| ------------ | -------------------------------------- |
| `:adapter` | QueueAdapter object processing the job |
| `:job` | Job object |
### enqueue.active_job
| Key | Value |
| ------------ | -------------------------------------- |
| `:adapter` | QueueAdapter object processing the job |
| `:job` | Job object |
### perform_start.active_job
| Key | Value |
| ------------ | -------------------------------------- |
| `:adapter` | QueueAdapter object processing the job |
| `:job` | Job object |
### perform.active_job
| Key | Value |
| ------------ | -------------------------------------- |
| `:adapter` | QueueAdapter object processing the job |
| `:job` | Job object |
Railties
--------