Skip to content

Commit

Permalink
Update Instrumentation guide for Active Storage [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
yhirano55 committed Oct 7, 2017
1 parent 3ede539 commit ce9cd1b
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions guides/source/active_support_instrumentation.md
Expand Up @@ -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
--------
Expand Down

0 comments on commit ce9cd1b

Please sign in to comment.