https://github.com/rainbowdashlabs/connchecker
Tool I wrote to monitor my annoying internet connection.
https://github.com/rainbowdashlabs/connchecker
Last synced: about 2 months ago
JSON representation
Tool I wrote to monitor my annoying internet connection.
- Host: GitHub
- URL: https://github.com/rainbowdashlabs/connchecker
- Owner: rainbowdashlabs
- Created: 2021-11-16T20:03:50.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-22T20:19:04.000Z (over 2 years ago)
- Last Synced: 2025-02-10T00:41:26.640Z (3 months ago)
- Language: Python
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Usage
This tool monitors your internet connection and writes a log to a sqlite database.
# Setup
- Clone the repository.
- Run `pipenv install`# Running
Use `python main.py`# Configuring
You can configure some stuff via arguments
`python main.py arg1=val1 arg2=val2`Possible arguments are:
| Name | description | default |
| ---- | ---- | ---- |
| url | The url which should get pinged | https://google.com |
| interval | The time between two checks in seconds | 5 |
| timeout | The time in seconds after a request is considered as failed when the website does not respond | 3 |
| speedcheck_threads | Amount of threads used by the speedcheck | cores / 2 |