Weird behavior around nodes

There are no mishaps. Whole background is really simple (for me, im IT “specialist” :slight_smile: in my company).
1 PC with ubuntu server, 9 disks (1 system ssd, 8 hdd for nodes), 1 docker instance for one disk (sum 8),

Docker run scripts:

docker run --rm -e SETUP="true" \
    --user $(id -u):$(id -g) \
    --mount type=bind,source="/home/patryk/Desktop/id/stor1",destination=/app/identity \
    --mount type=bind,source="/mnt/stor1",destination=/app/config \
    --name stor1 storjlabs/storagenode:latest

docker run -d --restart unless-stopped --stop-timeout 300 \
    -p 28967:28967/tcp \
    -p 28967:28967/udp \
    -p 14001:14002 \
    -e WALLET=" \
    -e EMAIL="" \
    -e ADDRESS="my.public.ip:28967" \
    -e STORAGE="1TB" \
    --user $(id -u):$(id -g) \
    --mount type=bind,source="/home/patryk/Desktop/id/stor1",destination=/app/identity \
    --mount type=bind,source="/mnt/stor1",destination=/app/config \
    --name stor1 storjlabs/storagenode:latest

for every next node “stor1” is changeg for +1 so next’s looks like stor2, stor3…
-p 28967:28967 for every node add +1 so second looks like 28968:28967
-P 14001:14002 similar like previous

Ports are redirected on mikrotik router with public ip from ISP. Bandwidth 600/60.

Now i run script from @Bivvo (Howto: storage node health check > discord + email alerting script) to see whats going on from start of live of nodes and im confused. My dashboard from nodes in suspension & audit looks like:

Node 1: Everythink 100%
Node 2: Everythink 100%
Node 3: Everythink 100% except ap1.storj.io:7777 Online 98%
Node 4: Everythink 100%
Node 5: ap1.storj.io:7777 Online 93.75%, us1.storj.io:7777 Online 95.83%, eu1.storj.io:7777 Online 97.5
Node 6: Everythink 100%
Node 7: Like node 5 ±1%
Node 8: Everythink 100%

But from script from Bivvo that i made to analyze whole logs i got:

[stor1] 
.. downloads (canceled: 2.85%, failed: 0.11%, audit: 97%) 

[stor2] 
.. downloads (canceled: 3.87%, failed: 0.10%, audit: 96%) 
.. uploads (canceled: 0.71%, failed: 1.91%, audit: 97%) 

[stor3] 
.. downloads (canceled: 3.04%, failed: 0.14%, audit: 97%) 

[stor4]
no errors

[stor5] 
.. downloads (canceled: 3.26%, failed: 0.17%, audit: 97%) 
.. uploads (canceled: 0.74%, failed: 2.54%, audit: 97%) 

[stor6] 
.. uploads (canceled: 0.75%, failed: 1.84%, audit: 97%) 

[stor7] 
.. downloads (canceled: 3.56%, failed: 0.08%, audit: 96%) 
.. uploads (canceled: 0.72%, failed: 2.02%, audit: 97%)

[stor8] 
.. downloads (canceled: 2.96%, failed: 0.09%, audit: 97%) 
.. uploads (canceled: 0.59%, failed: 2.36%, audit: 97%)

docker logs stor(1, 2, 3...) 2>&1 | grep -E "GET_AUDIT|GET_REPAIR" | grep failed

^ shows nothink

docker logs stor* 2>&1 | grep -E "GET_AUDIT|GET_REPAIR" | grep started -c & docker logs stor* 2>&1 | grep -E "GET_AUDIT|GET_REPAIR" | grep downloaded -c

^ shows same ammount of audits started and finished

What im missing?