-
Notifications
You must be signed in to change notification settings - Fork 45
Open
Description
Instead of reporting a value of zero if there have been no transactions with the respective status, the metric is missing entirely. This means that an increase expression on the transactions_count_total metric will be off by one after a restart of the oracle service - it will not count the first transaction.
Actual behaviour (6.0.2, built from source):
# HELP lido_oracle_transactions_count_total Total count of transactions. Success or failure
# TYPE lido_oracle_transactions_count_total counter
lido_oracle_transactions_count_total{status="Status.SUCCESS"} 1.0
Expected behaviour:
# HELP lido_oracle_transactions_count_total Total count of transactions. Success or failure
# TYPE lido_oracle_transactions_count_total counter
lido_oracle_transactions_count_total{status="Status.SUCCESS"} 1.0
lido_oracle_transactions_count_total{status="Status.FAILURE"} 0.0
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels