@Krey the maintainer of that site could run a satellite and get info about the network? Just a suggestion…
Still low traffic after one month
afaik this satellite will be deprived of trust on nodes. Even if not, no one will like to see another empty satellite in their statistics.
Right now it say:
Egress Ingress
566.3 GB 599.3 GB (since Nov 1)
Not very long, 3 month. why?
just curious , my node is 1month plus 3 days…
i dont know how to check audits.
i can see the score on every satellite is 1
my capacity is 7TB, and stored 30GB now.
12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S
totalCount : 893
successCount : 893
alpha : 99.98759905300223
beta : 0
score : 1
118UWpMCHzs6CvSgWd9BfFVjw5K9pZbJjkfZJexMtSkmKxvvAW
totalCount : 956
successCount : 954
alpha : 99.99251267691729
beta : 0.0009035915836944429
score : 0.9999909634892235
121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6
totalCount : 944
successCount : 943
alpha : 99.924244653845
beta : 0.06832772446471178
score : 0.9993166720003341
12L9ZFwhzVpuEKMUNUqkaTLGzwY9G24tbiigLiXpmZWKwmcNDDs
totalCount : 1155
successCount : 1147
alpha : 99.93803828344458
beta : 0.061070720388073464
score : 0.999389287354693
“12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S”
{
“totalCount”: 4,
“successCount”: 4,
“alpha”: 4.524381249999999,
“beta”: 0,
“score”: 1
}
“118UWpMCHzs6CvSgWd9BfFVjw5K9pZbJjkfZJexMtSkmKxvvAW”
{
“totalCount”: 85,
“successCount”: 85,
“alpha”: 19.757193644378795,
“beta”: 0,
“score”: 1
}
“121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6”
{
“totalCount”: 57,
“successCount”: 57,
“alpha”: 18.97906262632791,
“beta”: 0,
“score”: 1
}
“12L9ZFwhzVpuEKMUNUqkaTLGzwY9G24tbiigLiXpmZWKwmcNDDs”
{
“totalCount”: 158,
“successCount”: 158,
“alpha”: 19.994257734924673,
“beta”: 0,
“score”: 1
}
is the alpha is my audit?
seems very low.
i thought score was my audit before.
so what’s wrong with my node? any thing i can do to improve it?
@Luiz I think you need to close your node so that the port 14002 cannot be accessed by anybody. If the port is open you might be vulnerable
And you probably need to give it some more time, just wait, for alpha to increase. I think I saw a formula for this somewhere in the forum.
The above script is useful, and you can copy/modify it to display uptime checks:
jq -r '.data.audit
replace with
jq -r '.data.uptime
The you display audits per satellite and uptime checks per satellite
your audit score is score
, the alpha an beta are used to calculate the score: https://github.com/storj/storj/blob/ae60b6533b9aff5bd8290882d7cb79dd5a6e6a2b/docs/blueprints/node-selection.md
root@CHEN:~# 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.uptime; done
“12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S”
{
“totalCount”: 880,
“successCount”: 880,
“alpha”: 99.9858682052364,
“beta”: 0,
“score”: 1
}
“118UWpMCHzs6CvSgWd9BfFVjw5K9pZbJjkfZJexMtSkmKxvvAW”
{
“totalCount”: 962,
“successCount”: 961,
“alpha”: 99.99313715965707,
“beta”: 0.0006643878275567735,
“score”: 0.9999933557098812
}
“121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6”
{
“totalCount”: 932,
“successCount”: 932,
“alpha”: 99.9916203198777,
“beta”: 0,
“score”: 1
}
“12L9ZFwhzVpuEKMUNUqkaTLGzwY9G24tbiigLiXpmZWKwmcNDDs”
{
“totalCount”: 1037,
“successCount”: 1034,
“alpha”: 99.96893016905928,
“beta”: 0.028152921988422265,
“score”: 0.9997184625679252
}
This is my new score two mins ago.
but i still get a very low traffic
ok, thank you mate…
I too am curious about the low traffic as a new node. The majority of my uploads are coming from 118UWp:
grep uploaded /media/storage/storj/node.log | cut -f5 | jq '."Satellite ID"' | sort | uniq -c
5114 "118UWpMCHzs6CvSgWd9BfFVjw5K9pZbJjkfZJexMtSkmKxvvAW"
270 "121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6"
443 "12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S"
825 "12L9ZFwhzVpuEKMUNUqkaTLGzwY9G24tbiigLiXpmZWKwmcNDDs"
But that satellite is giving me the fewest number of audits:
grep AUDIT /media/storage/storj/node.log | cut -f5 | jq '."Satellite ID"' | sort | uniq -c
4 "118UWpMCHzs6CvSgWd9BfFVjw5K9pZbJjkfZJexMtSkmKxvvAW"
28 "121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6"
22 "12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S"
16 "12L9ZFwhzVpuEKMUNUqkaTLGzwY9G24tbiigLiXpmZWKwmcNDDs"