Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

metrics: fix controller snapshot upload metrics #16070

Merged
merged 1 commit into from
Jan 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/v/cloud_storage/remote_probe.h
Original file line number Diff line number Diff line change
Expand Up @@ -270,11 +270,11 @@ class remote_probe {
/// Number of times backoff was applied during log-segment downloads
uint64_t _cnt_download_backoff{0};
/// Number of completed controller snapshot uploads.
uint64_t _cnt_controller_snapshot_successful_uploads;
uint64_t _cnt_controller_snapshot_successful_uploads{0};
/// Number of failed controller snapshot uploads.
uint64_t _cnt_controller_snapshot_failed_uploads;
uint64_t _cnt_controller_snapshot_failed_uploads{0};
/// Number of times backoff was applied during controller snapshot uploads.
uint64_t _cnt_controller_snapshot_upload_backoffs;
uint64_t _cnt_controller_snapshot_upload_backoffs{0};
/// Number of bytes being successfully sent to S3
uint64_t _cnt_bytes_sent{0};
/// Number of bytes being successfully received from S3
Expand Down
Loading