Fix metric (#3664)
This commit is contained in:
parent
20aa4434e2
commit
444e87f888
|
@ -313,7 +313,6 @@ impl ClusterInfo {
|
||||||
.collect();
|
.collect();
|
||||||
let max_ts = votes.iter().map(|x| x.0).max().unwrap_or(since);
|
let max_ts = votes.iter().map(|x| x.0).max().unwrap_or(since);
|
||||||
let txs: Vec<Transaction> = votes.into_iter().map(|x| x.1).collect();
|
let txs: Vec<Transaction> = votes.into_iter().map(|x| x.1).collect();
|
||||||
let votes: Vec<u64> = txs.iter().map(|tx| )
|
|
||||||
(txs, max_ts)
|
(txs, max_ts)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -785,7 +784,10 @@ impl ClusterInfo {
|
||||||
"repair-highest-slot",
|
"repair-highest-slot",
|
||||||
influxdb::Value::Integer(*slot as i64),
|
influxdb::Value::Integer(*slot as i64),
|
||||||
)
|
)
|
||||||
.add_field("repair-highest-ix", influxdb::Value::Integer(*slot as i64))
|
.add_field(
|
||||||
|
"repair-highest-ix",
|
||||||
|
influxdb::Value::Integer(*blob_index as i64),
|
||||||
|
)
|
||||||
.to_owned(),
|
.to_owned(),
|
||||||
);
|
);
|
||||||
self.window_highest_index_request_bytes(*slot, *blob_index)?
|
self.window_highest_index_request_bytes(*slot, *blob_index)?
|
||||||
|
|
Loading…
Reference in New Issue