@@ -37,25 +37,25 @@ var (
37
37
prometheus .NewDesc (prometheus .BuildFQName (namespace , performanceSchema , "transactions_in_queue" ),
38
38
"The number of transactions in the queue pending conflict detection checks." , nil , nil )},
39
39
"COUNT_TRANSACTIONS_CHECKED" : {prometheus .CounterValue ,
40
- prometheus .NewDesc (prometheus .BuildFQName (namespace , performanceSchema , "transactions_checked " ),
40
+ prometheus .NewDesc (prometheus .BuildFQName (namespace , performanceSchema , "transactions_checked_total " ),
41
41
"The number of transactions that have been checked for conflicts." , nil , nil )},
42
42
"COUNT_CONFLICTS_DETECTED" : {prometheus .CounterValue ,
43
- prometheus .NewDesc (prometheus .BuildFQName (namespace , performanceSchema , "conflicts_detected " ),
43
+ prometheus .NewDesc (prometheus .BuildFQName (namespace , performanceSchema , "conflicts_detected_total " ),
44
44
"The number of transactions that have not passed the conflict detection check." , nil , nil )},
45
45
"COUNT_TRANSACTIONS_ROWS_VALIDATING" : {prometheus .CounterValue ,
46
- prometheus .NewDesc (prometheus .BuildFQName (namespace , performanceSchema , "transactions_rows_validating " ),
46
+ prometheus .NewDesc (prometheus .BuildFQName (namespace , performanceSchema , "transactions_rows_validating_total " ),
47
47
"Number of transaction rows which can be used for certification, but have not been garbage collected." , nil , nil )},
48
48
"COUNT_TRANSACTIONS_REMOTE_IN_APPLIER_QUEUE" : {prometheus .GaugeValue ,
49
49
prometheus .NewDesc (prometheus .BuildFQName (namespace , performanceSchema , "transactions_remote_in_applier_queue" ),
50
50
"The number of transactions that this member has received from the replication group which are waiting to be applied." , nil , nil )},
51
51
"COUNT_TRANSACTIONS_REMOTE_APPLIED" : {prometheus .CounterValue ,
52
- prometheus .NewDesc (prometheus .BuildFQName (namespace , performanceSchema , "transactions_remote_applied " ),
52
+ prometheus .NewDesc (prometheus .BuildFQName (namespace , performanceSchema , "transactions_remote_applied_total " ),
53
53
"Number of transactions this member has received from the group and applied." , nil , nil )},
54
54
"COUNT_TRANSACTIONS_LOCAL_PROPOSED" : {prometheus .CounterValue ,
55
- prometheus .NewDesc (prometheus .BuildFQName (namespace , performanceSchema , "transactions_local_proposed " ),
55
+ prometheus .NewDesc (prometheus .BuildFQName (namespace , performanceSchema , "transactions_local_proposed_total " ),
56
56
"Number of transactions which originated on this member and were sent to the group." , nil , nil )},
57
57
"COUNT_TRANSACTIONS_LOCAL_ROLLBACK" : {prometheus .CounterValue ,
58
- prometheus .NewDesc (prometheus .BuildFQName (namespace , performanceSchema , "transactions_local_rollback " ),
58
+ prometheus .NewDesc (prometheus .BuildFQName (namespace , performanceSchema , "transactions_local_rollback_total " ),
59
59
"Number of transactions which originated on this member and were rolled back by the group." , nil , nil )},
60
60
}
61
61
)
0 commit comments