diff options
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_support_instrumentation.md | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/guides/source/active_support_instrumentation.md b/guides/source/active_support_instrumentation.md index e49abc41f4..484b081525 100644 --- a/guides/source/active_support_instrumentation.md +++ b/guides/source/active_support_instrumentation.md @@ -403,6 +403,38 @@ INFO. Cache stores may add their own keys } ``` +Active Job +-------- + +### enqueue_at.active_job + +| Key | Value | +| ------------ | ------------------------------- | +| `:adapter` | Object of specified adapter | +| `:job` | Object of Active Job | + +### enqueue.active_job + +| Key | Value | +| ------------ | ------------------------------- | +| `:adapter` | Object of specified adapter | +| `:job` | Object of Active Job | + +### perform_start.active_job + +| Key | Value | +| ------------ | ------------------------------- | +| `:adapter` | Object of specified adapter | +| `:job` | Object of Active Job | + +### perform.active_job + +| Key | Value | +| ------------ | ------------------------------- | +| `:adapter` | Object of specified adapter | +| `:job` | Object of Active Job | + + Railties -------- |