aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorYoshiyuki Hirano <yhirano@me.com>2017-10-07 12:20:58 +0900
committerYoshiyuki Hirano <yhirano@me.com>2017-10-07 12:20:58 +0900
commitce9cd1b67dce243c0ca030bf2fef350dac44a46f (patch)
tree0ad8c70fcc2a2753e51bc21cdae8f1062cbc17bc /guides
parent3ede539357acc91e377611cea9dd5f30678e7b2a (diff)
downloadrails-ce9cd1b67dce243c0ca030bf2fef350dac44a46f.tar.gz
rails-ce9cd1b67dce243c0ca030bf2fef350dac44a46f.tar.bz2
rails-ce9cd1b67dce243c0ca030bf2fef350dac44a46f.zip
Update Instrumentation guide for Active Storage [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/active_support_instrumentation.md47
1 files changed, 47 insertions, 0 deletions
diff --git a/guides/source/active_support_instrumentation.md b/guides/source/active_support_instrumentation.md
index ff4288a7f5..893b18ce0d 100644
--- a/guides/source/active_support_instrumentation.md
+++ b/guides/source/active_support_instrumentation.md
@@ -450,6 +450,53 @@ Active Job
| `:adapter` | QueueAdapter object processing the job |
| `:job` | Job object |
+Active Storage
+--------------
+
+### service_upload.active_storage
+
+| Key | Value |
+| ------------ | ---------------------------- |
+| `:key` | Secure token |
+| `:service` | Name of the service |
+| `:checksum` | Checksum to ensure integrity |
+
+### service_streaming_download.active_storage
+
+| Key | Value |
+| ------------ | ------------------- |
+| `:key` | Secure token |
+| `:service` | Name of the service |
+
+### service_download.active_storage
+
+| Key | Value |
+| ------------ | ------------------- |
+| `:key` | Secure token |
+| `:service` | Name of the service |
+
+### service_delete.active_storage
+
+| Key | Value |
+| ------------ | ------------------- |
+| `:key` | Secure token |
+| `:service` | Name of the service |
+
+### service_exist.active_storage
+
+| Key | Value |
+| ------------ | --------------------------- |
+| `:key` | Secure token |
+| `:service` | Name of the service |
+| `:exist` | File or blob exists or not |
+
+### service_url.active_storage
+
+| Key | Value |
+| ------------ | ------------------- |
+| `:key` | Secure token |
+| `:service` | Name of the service |
+| `:url` | Generated url |
Railties
--------