File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -354,17 +354,13 @@ pub struct ApiServerMetrics {
354
354
pub process_startup_time_us : SharedStoreMetric ,
355
355
/// Measures the cpu's startup time in microseconds.
356
356
pub process_startup_time_cpu_us : SharedStoreMetric ,
357
- /// Number of timeouts during communication with the VMM.
358
- pub sync_vmm_send_timeout_count : SharedIncMetric ,
359
357
}
360
358
impl ApiServerMetrics {
361
359
/// Const default construction.
362
360
pub const fn new ( ) -> Self {
363
361
Self {
364
362
process_startup_time_us : SharedStoreMetric :: new ( ) ,
365
363
process_startup_time_cpu_us : SharedStoreMetric :: new ( ) ,
366
- sync_response_fails : SharedIncMetric :: new ( ) ,
367
- sync_vmm_send_timeout_count : SharedIncMetric :: new ( ) ,
368
364
}
369
365
}
370
366
}
Original file line number Diff line number Diff line change @@ -131,8 +131,6 @@ def validate_fc_metrics(metrics):
131
131
"api_server" : [
132
132
"process_startup_time_us" ,
133
133
"process_startup_time_cpu_us" ,
134
- "sync_response_fails" ,
135
- "sync_vmm_send_timeout_count" ,
136
134
],
137
135
"balloon" : [
138
136
"activate_fails" ,
You can’t perform that action at this time.
0 commit comments