@donald.m.motsinger thanks for that explanation. Short question, how does the sattelites do the auditing? Is there sth like it audits twice a day or sth like this?
Audits are made all the time. Just search for “GET_AUDIT” in your logs. I have audits almost every minute. If your node is new, then there is much less data to audit and therefore you will see less audits.
1 Like
Hi there,
does this work on windows too? I dont get a response for /api/satellite/{id}
Alexey
December 7, 2020, 8:45pm
45
The endpoint has been changed:
With v0.35.3 the storage node dashboard API endpoints have changed. If you don’t know how to open the dashboard API please take a look at the old thread here: Storage node dashboard API (v0.19.0)
The new endpoints are:
/api/sno
/api/sno/satellites
/api/sno/satellite/${id}
/api/notifications/list?page=1&limit=10
In the code I can also see the following endpoints but I was not able to test them:
/api/notifications/readall
/api/notifications/${id}/read
Payout data is available with v1.3.3
…
Please use an updated one:
Updated for
Docker version (bash)
for sat in `docker exec -i storagenode wget -qO - localhost:14002/api/sno | jq .satellites[].id -r`; do docker exec -i storagenode wget -qO - localhost:14002/api/sno/satellite/$sat | jq .id,.audits; done
Docker version (Powershell)
(docker exec -i storagenode wget -qO - localhost:14002/api/sno | ConvertFrom-Json).satellites.id | %{"$_"; (docker exec -i storagenode wget -qO - localhost:14002/api/sno/satellite/$_ | ConvertFrom-Json).audits}
Dashboard is por…
Or you can use this script:
I made this calculator to provide payout information and be used as an extension of the dashboard functionality already provided by Storj.
Storj Earnings Calculator
Earnings calculation script for Storj V3 storagenodes
Prerequisites
Python is required to run this script.
This script was tested on Windows 10 and Linux, with Python 3.7. Other OS’s and versions will likely also work.
Warning
If you are running Docker on Windows or MacOS, stop the node, copy the satellites.db, bandwidth.db, stor…
1 Like