aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_support_instrumentation.md
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2015-08-02 08:47:21 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2015-08-02 08:47:21 +0900
commit79b74d2d38ffe22212bb7f5bf79775d424404889 (patch)
treeeb75657a2d3b1df43f85bf7e9169a203c5fa175d /guides/source/active_support_instrumentation.md
parentc7a9f572d16b742b0138fb658bae30f08509b584 (diff)
downloadrails-79b74d2d38ffe22212bb7f5bf79775d424404889.tar.gz
rails-79b74d2d38ffe22212bb7f5bf79775d424404889.tar.bz2
rails-79b74d2d38ffe22212bb7f5bf79775d424404889.zip
add Active Job section to instrumentation guide [ci skip]
Diffstat (limited to 'guides/source/active_support_instrumentation.md')
-rw-r--r--guides/source/active_support_instrumentation.md32
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
--------