You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
As of now, the format returned by the metrics endpoint (GET /metrics) seems to be tight to Prometheus:
# HELP payid_lookup_request count of requests to lookup a PayID
# TYPE payid_lookup_request counter
payid_lookup_request{paymentNetwork="XRPL",environment="TESTNET",org="payid.es",result="found"} 68
...
# HELP payid_count count of total PayIDs
# TYPE payid_count gauge
payid_count{paymentNetwork="BTC",environment="MAINNET",org="payid.app"} 1
payid_count{paymentNetwork="ETH",environment="TESTNET",org="payid.app"} 1
payid_count{paymentNetwork="XRPL",environment="MAINNET",org="payid.app"} 6
payid_count{paymentNetwork="XRPL",environment="TESTNET",org="payid.app"} 3
Request to abstract from the destination tool (Prometheus or whatever reporting tool is chosen) and adopt JSON as format so it is easier to read and transform.
Context
Easier processing by middlewares and reporting tools.
The text was updated successfully, but these errors were encountered:
Detailed Description
As of now, the format returned by the metrics endpoint (
GET /metrics
) seems to be tight to Prometheus:Request to abstract from the destination tool (Prometheus or whatever reporting tool is chosen) and adopt JSON as format so it is easier to read and transform.
Context
Easier processing by middlewares and reporting tools.
The text was updated successfully, but these errors were encountered: