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
// TODO: remove after next release and migrate dashboards to `sum by (result) (remote_storage_s3_requests_count)`
requests:RequestTyped<IntCounter>,
/// Subset of attempted requests failed
// TODO: remove after next release and migrate dashboards to `remote_storage_s3_requests_count{result="err"}`
failed:RequestTyped<IntCounter>,
sum by (result) (remote_storage_s3_requests_count)
This migration suggestion is wrong; the old one included all (succeeded, failed, cancelled) requests, so it would just be sum over all remote_storage_s3_requests_count per instance or whatever we want to filter for.
The text was updated successfully, but these errors were encountered:
#4942 left old metrics in place for migration purposes. It was noticed
that from new metrics the total number of deleted objects was forgotten,
add it.
While reviewing, it was noticed that the delete_object could just be
delete_objects of one.
---------
Co-authored-by: Arpad Müller <[email protected]>
Follow-up to #4892, from PR desc:
Removal and migration instructions:
neon/libs/remote_storage/src/s3_bucket/metrics.rs
Lines 128 to 133 in 4ce7aa9
This migration suggestion is wrong; the old one included all (succeeded, failed, cancelled) requests, so it would just be sum over all
remote_storage_s3_requests_count
per instance or whatever we want to filter for.The text was updated successfully, but these errors were encountered: