aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_support_instrumentation.md
diff options
context:
space:
mode:
Diffstat (limited to 'guides/source/active_support_instrumentation.md')
-rw-r--r--guides/source/active_support_instrumentation.md40
1 files changed, 16 insertions, 24 deletions
diff --git a/guides/source/active_support_instrumentation.md b/guides/source/active_support_instrumentation.md
index 484b081525..e5a560edd0 100644
--- a/guides/source/active_support_instrumentation.md
+++ b/guides/source/active_support_instrumentation.md
@@ -244,14 +244,6 @@ INFO. The adapters will add their own data as well.
}
```
-### identity.active_record
-
-| Key | Value |
-| ---------------- | ----------------------------------------- |
-| `:line` | Primary Key of object in the identity map |
-| `:name` | Record's class |
-| `:connection_id` | `self.object_id` |
-
### instantiation.active_record
| Key | Value |
@@ -408,31 +400,31 @@ Active Job
### enqueue_at.active_job
-| Key | Value |
-| ------------ | ------------------------------- |
-| `:adapter` | Object of specified adapter |
-| `:job` | Object of Active Job |
+| Key | Value |
+| ------------ | -------------------------------------- |
+| `:adapter` | QueueAdapter object processing the job |
+| `:job` | Job object |
### enqueue.active_job
-| Key | Value |
-| ------------ | ------------------------------- |
-| `:adapter` | Object of specified adapter |
-| `:job` | Object of Active Job |
+| Key | Value |
+| ------------ | -------------------------------------- |
+| `:adapter` | QueueAdapter object processing the job |
+| `:job` | Job object |
### perform_start.active_job
-| Key | Value |
-| ------------ | ------------------------------- |
-| `:adapter` | Object of specified adapter |
-| `:job` | Object of Active Job |
+| Key | Value |
+| ------------ | -------------------------------------- |
+| `:adapter` | QueueAdapter object processing the job |
+| `:job` | Job object |
### perform.active_job
-| Key | Value |
-| ------------ | ------------------------------- |
-| `:adapter` | Object of specified adapter |
-| `:job` | Object of Active Job |
+| Key | Value |
+| ------------ | -------------------------------------- |
+| `:adapter` | QueueAdapter object processing the job |
+| `:job` | Job object |
Railties