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:
commit
5500e28eb3
1 changed files with 32 additions and 0 deletions
|
@ -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
|
||||
--------
|
||||
|
||||
|
|
Loading…
Reference in a new issue