diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-10-07 12:40:02 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-07 12:40:02 +0900 |
commit | 5873da8d6f9cecb19dce5b94896ce8fbe9fdc284 (patch) | |
tree | eae38fd824cb8ba1b5de741e74671c7e83f32bcc /guides | |
parent | 970b293d53e2494aa386a8a546621ac07a895bd8 (diff) | |
parent | ce9cd1b67dce243c0ca030bf2fef350dac44a46f (diff) | |
download | rails-5873da8d6f9cecb19dce5b94896ce8fbe9fdc284.tar.gz rails-5873da8d6f9cecb19dce5b94896ce8fbe9fdc284.tar.bz2 rails-5873da8d6f9cecb19dce5b94896ce8fbe9fdc284.zip |
Merge pull request #30826 from yhirano55/update_instrumentation_guide_for_active_storage
Update Instrumentation guide for Active Storage [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_support_instrumentation.md | 47 |
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 -------- |