We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3c8190 commit da77fb7Copy full SHA for da77fb7
src/app.rs
@@ -409,7 +409,7 @@ impl App {
409
if number > 0 {
410
GAUGE_HUGE_PARTITION_NUMBER
411
.with_label_values(&vec![ALL_LABEL])
412
- .sub(self.huge_partition_number.load(Ordering::Relaxed) as i64);
+ .sub(number as i64);
413
414
if let Err(e) = GAUGE_HUGE_PARTITION_NUMBER.remove_label_values(&[&self.app_id]) {
415
error!(
@@ -771,7 +771,7 @@ impl AppManager {
771
for idx in 0..limit {
772
let app = apps[idx];
773
if app.total_resident_data_size() <= 0 {
774
- break;
+ continue;
775
}
776
GAUGE_TOPN_APP_RESIDENT_BYTES
777
.with_label_values(&[&app.app_id])
0 commit comments