Fork of Craig Watson bitcoind-status.
This is a small PHP application designed to display status and information from the Zcash node daemon.
To run the application, you will need:
- A Zcash node with RPC enabled.
- A web-server with PHP installed.
- The PHP
curl
module - this is used to make RPC calls to the Zcash daemon.
This application has been tested with PHP 5.4, 5.5 and 5.6, as well as HHVM and Nightly PHP builds, via TravisCI.
To get started, all you need to do is copy/rename php/config.sample.php
to php/config.php
and configure your node's RPC credentials. The application will connect to your node via RPC and report statistics.
To use Google Analytics, simply create a file called google_analytics.inc
inside the php
directory and paste your GA code into it.
The script can also periodically collect the current number of connections as well as peer protocol versions and store it for display via Google Charts on your status page.
To do this, just schedule the /stats.php
script as well as the /peercount.php
script to be called at whatever interval you like, then config.php
to enable the chart display. You can optionally tweak the settings under the "Stats" and "Node Count" sections if you want to keep more or less data.
/stats.php
will create a graph showing the number of connections over time./peercount.php
will create a graph showing the most common protocol versions over time.
Below are two example crontab
entries to call the scripts every five minutes via curl
. It is highly recommended to only allow 127.0.0.1
to call the script, as allowing other IP addresses could lead to your node becoming vulnerable to DDoS attacks.
*/5 * * * * curl -Ssk http://127.0.0.1/stats.php > /dev/null
*/5 * * * * curl -Ssk http://127.0.0.1/peercount.php > /dev/null
The node count script automatically counts Linux/MacOS and Windows clients. To add more node types to the chart, simply add an entry into the peercount_extra_nodes
array in config.php
.
The key of the entry is an internal-only identifier, and the value is the lower-case text that should be matched in order to increment the counter.
Contributions and testing reports are extremely welcome. Please submit a pull request or issue on GitHub, and make sure that your code conforms to the PEAR PHP coding standards (Travis CI will test your pull request when it's sent).
I accept tips via ChangeTip in any currency - if you would like to buy me a beer, please do!
The config.php
file also contains lots of options to control how the application behaves, and is separated out into loose sections:
Value | Type | Default | Explanation |
---|---|---|---|
rpc_user |
String | rpcuser |
Username for RPC calls |
rpc_pass |
String | rpcpass |
Password for RPC calls |
rpc_host |
String | localhost |
Which RPC host to connect to |
rpc_port |
String | 8332 |
Port to use for the RPC connection |
rpc_ssl |
Boolean | false |
Enables SSL for the RPC connection |
rpc_ssl_ca |
String | null |
The SSL CA chain file |
Value | Type | Default | Explanation |
---|---|---|---|
display_donation_text |
Boolean | true |
Display text to encourage donations |
donation_address |
String | not_set |
Zcash address to advertise for donations |
donation_amount |
String | 0.001 |
Donation amount - not currently implemented |
Value | Type | Default | Explanation |
---|---|---|---|
display_peer_info |
Boolean | false |
Display connected peers |
display_peer_port |
Boolean | false |
Display remote peer's port |
hide_dark_peers |
Boolean | true |
Hides peers connected from "Dark" networks |
ignore_unknown_ping |
Boolean | false |
Hides peers that do not report pingtime |
peers_to_ignore |
Array | array() |
List of peers not to display in the peer list |
Value | Type | Default | Explanation |
---|---|---|---|
use_cache |
Boolean | true |
Enable cache |
cache_file |
String | /tmp/zcashd-status.cache |
File location to write to for cache |
max_cache_time |
Int | 300 |
Expiry time for cache |
nocache_whitelist |
Array | array('127.0.0.1') |
The IP addresses that are allowed to bypass or clear cache |
Value | Type | Default | Explanation |
---|---|---|---|
geolocate_peer_ip |
Boolean | false |
Geolocate peers' IP addresses |
display_ip_location |
Boolean | false |
Geolocate node IP address |
Value | Type | Default | Explanation |
---|---|---|---|
display_ip |
Boolean | false |
Display the server IP address |
display_free_disk_space |
Boolean | false |
Display free disk space |
display_testnet |
Boolean | false |
Display testnet status |
display_version |
Boolean | true |
Display node zcashd version |
display_github_ribbon |
Boolean | true |
Displays the 'Fork me on GitHub' ribbon |
display_max_height |
Boolean | false |
Displays the node height as a percentage of network height |
use_zcashd_ip |
Boolean | true |
Use the Zcash daemon to get the public IP, instead of $_SERVER |
intro_text |
String | not_set |
Introductory text to display above the node statistics. |
display_chart |
Boolean | false |
Displays a chart showing the stats collected by the stats.php script |
display_peer_chart |
Boolean | false |
Displays a chart showing the mix of node versions connected to your node |
node_links |
Array | array() |
Displays links to various other profiles for your node. Takes the form of a multidimensional array, see example |
Value | Type | Default | Explanation |
---|---|---|---|
stats_whitelist |
Array | array('127.0.0.1') |
Hosts that can run the stats script |
stats_file |
String | /tmp/zcashd-status.data |
File to store stats |
stats_max_age |
String | 604800 |
Maximum age for stats |
stats_min_data_points |
Int | 5 |
Minimum data points to collect before displaying chart |
Value | Type | Default | Explanation |
---|---|---|---|
peercount_whitelist |
Array | array('127.0.0.1') |
Hosts that can run the host-count script |
peercount_file |
String | /tmp/zcashd-peers.data |
File to store host-count |
peercount_max_age |
String | 604800 |
Maximum age for host-count |
peercount_min_data_points |
Int | 5 |
Minimum data points to collect before displaying chart |
peercount_extra_nodes |
Array | array() |
Key-Value array of extra node types to count (value = regex) |
Value | Type | Default | Explanation |
---|---|---|---|
display_zcashd_uptime |
Boolean | true |
Displays the uptime of the Zcash daemon |
zcashd_process_name |
String | zcashd |
Name to use when getting the zcash daemon process' uptime |
Value | Type | Default | Explanation |
---|---|---|---|
date_format |
String | H:i:s T, j F Y |
PHP date fuction format to use when outputting dates |
timezone |
String | null |
Timezone to use for dates. Set to null to use system default |
stylesheet |
String | v2-light.css |
CSS Stylesheet to use |
debug |
Boolean | false |
If enabled, the contents of $data is echoed in HTML comments |
admin_email |
String | [email protected] |
Email address to display on error |
- Do not disable cache unless you either have an alternative mechanism or your node is protected from potential DDoS attacks.
- Copyright (C) 2015 Craig Watson
- Distributed under the terms of the Apache License v2.0 - see LICENSE file for details.
- EasyBitcoin-PHP library is reproduced under the terms of the MIT licence and is used from commit 670414e.