Struct etcd::stats::StoreStats
[−]
[src]
pub struct StoreStats { pub compare_and_delete_fail: u64, pub compare_and_delete_success: u64, pub compare_and_swap_fail: u64, pub compare_and_swap_success: u64, pub create_fail: u64, pub create_success: u64, pub delete_fail: u64, pub delete_success: u64, pub expire_count: u64, pub get_fail: u64, pub get_success: u64, pub set_fail: u64, pub set_success: u64, pub update_fail: u64, pub update_success: u64, pub watchers: u64, }
Statistics about the operations handled by an etcd member.
Fields
compare_and_delete_fail | The number of failed compare and delete operations. |
compare_and_delete_success | The number of successful compare and delete operations. |
compare_and_swap_fail | The number of failed compare and swap operations. |
compare_and_swap_success | The number of successful compare and swap operations. |
create_fail | The number of failed create operations. |
create_success | The number of successful create operations. |
delete_fail | The number of failed delete operations. |
delete_success | The number of successful delete operations. |
expire_count | The number of expire operations. |
get_fail | The number of failed get operations. |
get_success | The number of successful get operations. |
set_fail | The number of failed set operations. |
set_success | The number of successful set operations. |
update_fail | The number of failed update operations. |
update_success | The number of successful update operations. |
watchers | The number of watchers. |