aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge Claghorn <george@basecamp.com>2019-04-17 16:56:35 -0400
committerGitHub <noreply@github.com>2019-04-17 16:56:35 -0400
commit98a75b46468c45d4477949ed267bb8823297d815 (patch)
tree0e09ca62fa200ad7bf7252748776bb571cb48579
parent7230447d5a712017f2d51abeff035465c261c943 (diff)
parent78260d5663702f153f6bae64073f9659de366946 (diff)
downloadrails-98a75b46468c45d4477949ed267bb8823297d815.tar.gz
rails-98a75b46468c45d4477949ed267bb8823297d815.tar.bz2
rails-98a75b46468c45d4477949ed267bb8823297d815.zip
Merge pull request #36010 from yoones/add-activestorage-instrumentation-hooks-to-guide
Mention more ActiveStorage hooks in Active Support Instrumentation guide [ci skip]
-rw-r--r--guides/source/active_support_instrumentation.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/guides/source/active_support_instrumentation.md b/guides/source/active_support_instrumentation.md
index e5ed283c45..4868b00bbe 100644
--- a/guides/source/active_support_instrumentation.md
+++ b/guides/source/active_support_instrumentation.md
@@ -545,6 +545,14 @@ Active Storage
| `:key` | Secure token |
| `:service` | Name of the service |
+### service_download_chunk.active_storage
+
+| Key | Value |
+| ------------ | ------------------------------- |
+| `:key` | Secure token |
+| `:service` | Name of the service |
+| `:range` | Byte range attempted to be read |
+
### service_download.active_storage
| Key | Value |
@@ -582,6 +590,23 @@ Active Storage
| `:service` | Name of the service |
| `:url` | Generated URL |
+### service_update_metadata.active_storage
+
+| Key | Value |
+| --------------- | ------------------------------ |
+| `:key` | Secure token |
+| `:service` | Name of the service |
+| `:content_type` | HTTP Content-Type field |
+| `:disposition` | HTTP Content-Disposition field |
+
+INFO. The only ActiveStorage service that provides this hook so far is GCS.
+
+### preview.active_storage
+
+| Key | Value |
+| ------------ | ------------------- |
+| `:key` | Secure token |
+
Railties
--------