1
0
Fork 0
forked from lthn/blockchain
blockchain/utils/munin_plugins/tx_mixins_count

18 lines
396 B
Text
Raw Permalink Normal View History

2021-06-17 01:47:35 +02:00
#!/bin/bash
case $1 in
config)
cat <<'EOM'
graph_args --alt-autoscale
graph_title mixins
graph_vlabel mixins
2021-06-17 15:53:22 +02:00
graph_category transactions
2021-06-17 01:47:35 +02:00
mixins.label mixins
EOM
exit 0;;
esac
printf "mixins.value "
connectivity_tool --ip=127.0.0.1 --rpc-port=$ZANO_RPC_PORT --timeout=1000 --rpc-get-daemon-info --getinfo-flags-hex="0x0000000000010000" | grep tx_mixin_count | cut -d ' ' -f2