15 lines
474 B
Bash
Executable file
15 lines
474 B
Bash
Executable file
#!/bin/bash
|
|
|
|
case $1 in
|
|
config)
|
|
cat <<'EOM'
|
|
graph_title incoming_connections_count
|
|
graph_vlabel incoming_connections_count
|
|
graph_category daemon
|
|
incoming_connections_count.label incoming_connections_count
|
|
EOM
|
|
exit 0;;
|
|
esac
|
|
|
|
printf "incoming_connections_count.value "
|
|
connectivity_tool --ip=127.0.0.1 --rpc-port=$ZANO_RPC_PORT --timeout=1000 --rpc-get-daemon-info --getinfo-flags-hex="0x0000000000000000" | grep incoming_connections_count | cut -d ' ' -f2
|