A monitoring tool to collect all important metrics from your Chia farming node and connected harvesters. It can send you push notifications with regular status updates and will alert you in case something goes wrong or a proof is found. All metrics are exported to a Prometheus compatible /metrics
endpoint and a Grafana dashboard is also provided:
This example dashboard displays almost all collected metrics and can be imported from grafana.com using the ID 14544
or using the grafana/dashboard.json
from this repository.
To use notifications, please configure a status_service_url
and alert_service_url
for your desired notification service in the config.json
. You can use most popular notifications services by creating a service specific webhook URL, following the instructions from this wiki. If you wish to disable notifications entirely, you can set the enable
flag in the notifications
section of the config.json
to false
.
Following notifications are currently sent to the status_service_url
:
** π¨βπΎ Farm Status π©βπΎ **
πΎ OG Plot Count: 3797
πΎ Portable Plot Count: 50
π§Ί OG Plot Size: 375.828 TiB
π§Ί Portable Plot Size: 4.948 TiB
π Plot Change 24h: +86 (+8.511 TiB)
βοΈ Signage Points Per Minute: 6.30
π Passed Filters Per Minute: 49.30
β
Total Proofs found: 73
π° Total Balance: 2.00001 XCH
π°οΈ Time To Win: 2 weeks and 4 days
πΎ Current Netspace: 30.706 EiB
ποΈ Peak Height: 544594
πΆ Full Node Peer Count: 8
π Synced: True
Triggers when a new partial or full proof is found. To limit the amount of notifications when pooling, this can be disabled in the config using the disable_proof_found_alert
setting.
** π€ Proof found! π€ **
Your farm found a new partial or full proof
Following notifications are currently sent to the alert_service_url
:
** π¨ Farmer Lost Sync! π¨ **
It seems like your farmer lost its connection to the Chia Network
** β
Farmer Synced! β
**
Your farmer is successfully synced to the Chia Network again
Triggers when the total plot count of your farm drops below a configurable threshold (default: 1).
The corresponding lost_plots_alert_threshold
parameter can be adjusted in the config.json
.
** π¨ Farmer Lost Plots! π¨ **
It seems like your farmer lost some plots
Expected: 130, Found: 124
** β
Farmer Plots recoverd! β
**
Your farmer's plot count has recovered to its previous value
The following statistics are collected from your local Chia node using the RPC and WebSocket APIs and are then exported via a Prometheus compatible /metrics
HTTP endpoint on the exporter_port
from your config.json
.
- Total balance (
chia_confirmed_total_mojos
) - Total farmed (
chia_farmed_total_mojos
)
- Sync status (
chia_sync_status
) - Peak height (
chia_peak_height
) - Difficulty (
chia_diffculty
) - Total netspace (
chia_network_space
) - Connection count (
chia_connections_count
)
- OG plot count (
chia_plot_count
) - OG plot size (
chia_plot_size
) - Portable plot count (
chia_portable_plot_count
) - Portable plot size (
chia_portable_plot_size
)
- Received signage points (
chia_signage_points
) - Received signage point index (
chia_signage_point_index
) - Attempted challenges (
chia_block_challenges
) - Plots passed filter (
chia_plots_passed_filter
) - Proofs found (
chia_proofs_found
)
- Current Points (
chia_current_pool_points
) - Current difficulty (
chia_current_pool_difficulty
) - Points found (
chia_pool_points_found_since_start
) - Points acknowledged (
chia_pool_points_acknowledged_since_start
) - Points found 24h (
chia_pool_points_found_24h
) - Points acknowledged 24h (
chia_pool_points_acknowledged_24h
) - Pool errors 24h (
chia_num_pool_errors_24h
)
All pooling metrics support the following labels:
- P2 singleton address (
p2
) - Pool URL (
url
)
- USD price (
chia_price_usd_cent
) - EUR price (
chia_price_eur_cent
) - BTC price (
chia_price_btc_satoshi
) - ETH price (
chia_price_eth_gwei
)
To run this tool, we need the following things:
- Python 3
- Pipenv
sudo apt install python3 pipenv
- Clone the repository
git clone https://github.com/philippnormann/chia-monitor.git
cd chia-monitor
- Install the required dependecies
pipenv install
- Initialize the SQLite database
pipenv run alembic upgrade head
- Copy the example config file
cp config-example.json config.json
- Open up
config.json
and configure it to your preferences.
- Pull the latest release from git
cd chia-monitor
git reset origin/main --hard
git pull
- Update the required dependecies
pipenv install
- Upgrade the SQLite database model
pipenv run alembic upgrade head
To use the tool, run the monitor
module using pipenv
from the chia-monitor
directory
cd chia-monitor
pipenv run python -m monitor
Note: To run the tool in the background, you can run it as a service or in a detached screen.
Add a block to the scrape_configs
of your prometheus.yml
config file:
scrape_configs:
- job_name: chia_monitor
static_configs:
- targets: ['<<CHIA-MONITOR-HOSTNAME>>:8000']
and adjust the host name accordingly.