diff options
author | Antonio Juarez <antonio.maria.juarez@live.com> | 2014-03-03 22:07:58 +0000 |
---|---|---|
committer | Antonio Juarez <antonio.maria.juarez@live.com> | 2014-03-03 22:07:58 +0000 |
commit | 296ae46ed8f8f6e5f986f978febad302e3df231a (patch) | |
tree | 1629164454a239308f33c9e12afb22e7f3cd8eeb /utils/munin_plugins/tx_pool_size | |
parent | changed name (diff) | |
download | monero-296ae46ed8f8f6e5f986f978febad302e3df231a.tar.xz |
moved all stuff to github
Diffstat (limited to 'utils/munin_plugins/tx_pool_size')
-rw-r--r-- | utils/munin_plugins/tx_pool_size | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/utils/munin_plugins/tx_pool_size b/utils/munin_plugins/tx_pool_size new file mode 100644 index 000000000..0578b9090 --- /dev/null +++ b/utils/munin_plugins/tx_pool_size @@ -0,0 +1,15 @@ +#!/bin/bash + +case $1 in + config) + cat <<'EOM' +graph_title tx_pool_size +graph_vlabel tx_pool_size +graph_category bytecoin +tx_pool_size.label tx_pool_size +EOM + exit 0;; +esac + +printf "tx_pool_size.value " +/home/user/bytecoin_bin/connectivity_tool --ip=127.0.0.1 --rpc_port=8081 --timeout=1000 --rpc_get_daemon_info | grep tx_pool_size| cut -d ' ' -f2 |