In the Harvesters tab, you can find useful information on your individual harvesters' performance in order to help you improve your farm. Specifically, it shows
You can set the name for your harvesters in the settings page.
If you select Partials (time) from the dropdown, you can see the time taken of your partials per harvester. By clicking a partial, you can even see from what plot the partial originated. There's no better way to monitor and improve your farm than this!
If you are using docker or machinaris, your harester ID will by default reset on every start up.To prevent this:
Step 1: On the first run of a harvester, launch of the container with the following environment variables
keys
set to copy
ca
mapping a copy of the .chia/mainnet/config/ssl/ca
directory of the farmer node
This will create what's needed for the harvester to be authenticated with the farmer node with a chia init -c “ca”
Step 2: If the communication between the harvester and the farmer is properly established, stop the container, and set keys
to persistent
.
The harvester ID is now persistent, and will be perserved even when the container is upgraded.
docker-compose.yml
and add - keys=persistent
in the environment section. Rebuild the container (docker compose up -d –force-recreate machinaris
), and you're done as above.