Okay...one more doubt I have on PING CHECK is that according this logic:
DEFAULT_PING_CHECK_CONFIG = {
'count': {
'type':
'integer',
'default': 5,
'minimum': 2,
# chosen to avoid slowing down the queue
'maximum': 20,
},
'interval': {
'type':
'integer',
'default': 25,
'minimum': 10,
# chosen to avoid slowing down the queue
'maximum': 1000,
},
'bytes': {
'type':
'integer',
'default': 56,
'minimum': 12,
'maximum': 65508},
'timeout': {
'type':
'integer',
'default': 800,
'minimum': 5,
# arbitrary chosen to avoid slowing down the queue
'maximum': 1500,
},
}
Every 2.5 milliseconds ping is happening, it means it's huge ryt because the data is on the devices will be vanished very fast. Per minute 2400 times ping will happen if am not wrong (Interval =25, Ping check per min = 60000/interval) . Is there any specific reason there to ping to the devices every 2.5 milliseconds?
I started calculating these values and researching more on Openwisp2 Graphs so am getting all these doubts.