You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These metrics are emitted with a `Result`dimension, allowing you to filter and alarm on specific outcomes. Only the `Requests` metric is emitted per result.
674
+
These metrics are emitted with `Result`and `HttpStatusCode` dimensions, allowing you to filter and alarm on specific outcomes. Only the `Requests` metric is emitted per result.
672
675
673
676
| Metric | Unit | Description |
674
677
|--------|------|-------------|
@@ -678,23 +681,23 @@ These metrics are emitted with a `Result` dimension, allowing you to filter and
678
681
679
682
#### GetObject
680
683
681
-
| Result | Description |
682
-
|--------|-------------|
683
-
|`CacheHit`| Object was found in the cache. |
684
-
|`CacheHitExpired`| Object was found in the cache but had expired. |
685
-
|`Miss`| Object was not found in either cache or storage. |
686
-
|`StorageHit`| Object was not in cache but was found in S3 storage. |
687
-
|`StorageHitExpired`| Object was found in S3 storage but had expired. |
688
-
|`InternalError`| The request failed due to an internal error. |
689
-
|`AuthorizationError`| The request was rejected due to insufficient permissions. |
684
+
| Result |HttpStatusCode |Description |
685
+
|--------|----------------|-------------|
686
+
|`CacheHit`|`200`|Object was found in the cache. |
687
+
|`CacheHitExpired`|`404`|Object was found in the cache but had expired. |
688
+
|`Miss`|`404`|Object was not found in either cache or storage. |
689
+
|`StorageHit`|`200`|Object was not in cache but was found in S3 storage. |
690
+
|`StorageHitExpired`|`404`|Object was found in S3 storage but had expired. |
691
+
|`InternalError`|`500`|The request failed due to an internal error. |
692
+
|`AuthorizationError`|`403`|The request was rejected due to insufficient permissions. |
690
693
691
694
#### PutObject
692
695
693
-
| Result | Description |
694
-
|--------|-------------|
695
-
|`Ok`| Object was successfully stored. |
696
-
|`InternalError`| The request failed due to an internal error. |
697
-
|`AuthorizationError`| The request was rejected due to insufficient permissions. |
696
+
| Result |HttpStatusCode |Description |
697
+
|--------|----------------|-------------|
698
+
|`Ok`|`204`|Object was successfully stored. |
699
+
|`InternalError`|`500`|The request failed due to an internal error. |
700
+
|`AuthorizationError`|`403`|The request was rejected due to insufficient permissions. |
0 commit comments