Last active
November 25, 2024 13:51
-
-
Save RCasatta/ba52ee575795cf709c650a0beffa81c1 to your computer and use it in GitHub Desktop.
JQ program to parse output of `bitcoin-cli getrawmempool true` to have buckets of txs under a certain fee as a prometheus metric
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[to_entries | .[].value.fees.base * 1000000 | floor] | | |
[ | |
{ | |
le: "1", | |
val: (map(select(.<=1)) | length) | |
}, | |
{ | |
le: "2", | |
val: (map(select(.<=2)) | length) | |
}, | |
{ | |
le: "4", | |
val: (map(select(.<=4)) | length) | |
}, | |
{ | |
le: "8", | |
val: (map(select(.<=8)) | length) | |
}, | |
{ | |
le: "16", | |
val: (map(select(.<=16)) | length) | |
}, | |
{ | |
le: "32", | |
val: (map(select(.<=32)) | length) | |
}, | |
{ | |
le: "64", | |
val: (map(select(.<=64)) | length) | |
}, | |
{ | |
le: "128", | |
val: (map(select(.<=128)) | length) | |
}, | |
{ | |
le: "256", | |
val: (map(select(.<=256)) | length) | |
}, | |
{ | |
le: "512", | |
val: (map(select(.<=512)) | length) | |
}, | |
{ | |
le: "1024", | |
val: (map(select(.<=1024)) | length) | |
}, | |
{ | |
le: "+Inf", | |
val: (length) | |
} | |
] | | |
.[] | | |
"bitcoind_getrawmempool{field=\"value.fees.base\",le=\"\(.le)\"} \(.val)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment