Added ms to average ping

This commit is contained in:
bytedream 2022-02-03 19:39:24 +01:00
parent 34527de6c5
commit 9813cc3575

View File

@ -39,7 +39,7 @@ def v1():
print(f'Column {i}') print(f'Column {i}')
print(f'\tTimeouts: {round(ctimeout / row_count * 100, 2)}% ({ctimeout} of {row_count} requests)') print(f'\tTimeouts: {round(ctimeout / row_count * 100, 2)}% ({ctimeout} of {row_count} requests)')
print(f'\tAverage ping: {round(csum / ccounts, 4)} ({ccounts} of {row_count} requests)') print(f'\tAverage ping: {round(csum / ccounts, 4)}ms ({ccounts} of {row_count} requests)')
if __name__ == '__main__': if __name__ == '__main__':