i’m new to the whole linux game and i’m still dabbling with a raspberry pi 4.
i have a storj node that has been running for almost 2 weeks and was averaging 2gb egress daily which seemed to be normal as the vetting process was still ongoing.
today i noticed a hike in the egress and i’m wondering if this means that the vetting is finally done and i can start receiving some decent traffic ?
my setup is very simple, a rpi4 4gb with 1.4tb hdd , 1gb speed and unlimited bw.
i tried to look for any simple commands that i can run to see the sucess rate but being a noob has made it a lot harder than it may sound to some of experts here.
for sat in wget -qO - localhost:14002/api/dashboard | jq .data.satellites[].id -r; do wget -qO - localhost:14002/api/satellite/$sat | jq .data.id,.data.audit; done
thanks for all the inputs but how do i run this ?
for sat in wget -qO - localhost:14002/api/dashboard | jq .data.satellites[].id -r ; do wget -qO - localhost:14002/api/satellite/$sat | jq .data.id,.data.audit; done
Not even an error message? Try to run some parts of the command wget -qO - localhost:14002/api/dashboard
and wget -qO - localhost:14002/api/dashboard | jq .data.satellites[].id -r
Do you get any output? Then try with one of the satellites, which you got from the last command wget -qO - localhost:14002/api/satellite 118UWpMCHzs6CvSgWd9BfFVjw5K9pZbJjkfZJexMtSkmKxvvAW | jq .data.id,.data.audit
totalCount and successCount are the (successful) audits. You need 100 to be vetted per satellite. So you are vetted on one satellite and almost on another at the moment.
@node1 I had to: sudo apt-get jg
Then once jq is installed I ran: for sat in docker exec -i storagenode wget -qO - localhost:14002/api/dashboard | jq .data.satellites[].id -r; do docker exec -i storagenode wget -qO - localhost:14002/api/satellite/$sat | jq .data.id,.data.audit; done