@@ -78,22 +78,22 @@ impl Default for StorageMetrics {
78
78
object_storage_request_duration : new_histogram_vec (
79
79
"object_storage_request_duration" ,
80
80
"Durations until the response headers are returned from the object store, by \
81
- action and status. This does not measure the download time.",
81
+ action and status. This does not measure the download time for the body content .",
82
82
"storage" ,
83
83
& [ ] ,
84
84
[ "action" , "status" ] ,
85
85
vec ! [ 0.1 , 0.5 , 1.0 , 5.0 , 10.0 , 30.0 , 60.0 ] ,
86
86
) ,
87
87
object_storage_get_slice_in_flight_count : new_gauge (
88
88
"object_storage_get_slice_in_flight_count" ,
89
- "Number of GetObject for which the memory was allocated but the download is still \
90
- in progress.",
89
+ "Number of get_object for which the memory was allocated but the download is \
90
+ still in progress.",
91
91
"storage" ,
92
92
& [ ] ,
93
93
) ,
94
94
object_storage_get_slice_in_flight_num_bytes : new_gauge (
95
95
"object_storage_get_slice_in_flight_num_bytes" ,
96
- "Memory allocated for GetObject requests that are still in progress." ,
96
+ "Memory allocated for get_object requests that are still in progress." ,
97
97
"storage" ,
98
98
& [ ] ,
99
99
) ,
@@ -106,6 +106,9 @@ impl Default for StorageMetrics {
106
106
) ,
107
107
object_storage_download_errors : new_counter_vec (
108
108
"object_storage_download_errors" ,
109
+ // Download errors are recorded separately because the associated
110
+ // get_object requests were already recorded as successful in
111
+ // object_storage_requests_total
109
112
"Number of download requests that received successful response headers but failed \
110
113
during download.",
111
114
"storage" ,
0 commit comments