What is your node average of ''received block announcement" events

Hi There!

I still have the problem that blocks are created on a wrong parent
First I thought that my node has a less connections to get the latest validated block, but from increasing connections from 200 to 800 still have the issue.
So I counted the block announcement events from node log and divided it by the uptime of the node.

#!/bin/sh
count=`grep  "INFO received block announcement from network" <node_log> | awk -F',' '{print $3}' | sort | uniq -c | wc -l`
uptime=`jcli rest v0 node stats get -h <url> --output-format json | jq -r .uptime`
echo "$uptime / $count" | bc -l

That is right now: 34.63207547169811320754

if block creation happens each 20 sec on average it means that the node only get ~59% of the created blocks
Ca you please share you number about your node?

node version is: 0.8.13-241b3a59