Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 688 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 688 Bytes

latency-tester

A Python script to ping a server (Google by default) to test for latency issues. Includes a threshold setting allowing you to log entries that take longer than X seconds, 0.25 by default. Created with love by FlipperPA fueled by his loathing of Comcast.

Install & Running

To install dependencies:

pip install -r requirements.txt

To run:

python latency-tester.py

Building Docker Container

$ docker build -t latency-tester .

Running Docker Container

docker run --name latency-tester latency-tester

With log files mapped to host:

docker run --name latency-tester -v <host_dir>:/root/logs/. latency-tester