1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{[fabric, worker, timeouts], [
{type, counter},
{desc, <<"number of worker timeouts">>}
]}.
{[fabric, open_shard, timeouts], [
{type, counter},
{desc, <<"number of open shard timeouts">>}
]}.
{[fabric, read_repairs, success], [
{type, counter},
{desc, <<"number of successful read repair operations">>}
]}.
{[fabric, read_repairs, failure], [
{type, counter},
{desc, <<"number of failed read repair operations">>}
]}.
{[fabric, doc_update, errors], [
{type, counter},
{desc, <<"number of document update errors">>}
]}.
{[fabric, doc_update, mismatched_errors], [
{type, counter},
{desc, <<"number of document update errors with multiple error types">>}
]}.
{[fabric, doc_update, write_quorum_errors], [
{type, counter},
{desc, <<"number of write quorum errors">>}
]}.
|