diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-08-24 13:33:32 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-08-24 13:33:45 +0200 |
commit | 5500e28eb3bb56663bc6e347d4a07a2b54f7b17f (patch) | |
tree | e8358789ed03cf7c6b5c28cb66a0a54e791fadcf /guides | |
parent | b9825801e2cbb39fafc761ea24667e714d3cee2f (diff) | |
parent | 79b74d2d38ffe22212bb7f5bf79775d424404889 (diff) | |
download | rails-5500e28eb3bb56663bc6e347d4a07a2b54f7b17f.tar.gz rails-5500e28eb3bb56663bc6e347d4a07a2b54f7b17f.tar.bz2 rails-5500e28eb3bb56663bc6e347d4a07a2b54f7b17f.zip |
Merge pull request #21091 from y-yagi/add_activejob_section_to_instrumentation_guide
add Active Job section to instrumentation guide [ci skip]
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 cd44c685ba..e5a560edd0 100644 --- a/guides/source/active_support_instrumentation.md +++ b/guides/source/active_support_instrumentation.md @@ -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 -------- |