https://github.com/tsertkov/http-monitor
Simple http response time monitoring ruby script packaged into single purpose container image.
https://github.com/tsertkov/http-monitor
Last synced: 2 months ago
JSON representation
Simple http response time monitoring ruby script packaged into single purpose container image.
- Host: GitHub
- URL: https://github.com/tsertkov/http-monitor
- Owner: tsertkov
- License: mit
- Created: 2023-06-06T10:26:27.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-06T13:32:09.000Z (almost 2 years ago)
- Last Synced: 2025-02-01T23:41:45.094Z (4 months ago)
- Language: Ruby
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# http-monitor
Simple http response time monitoring ruby script packaged into single purpose container image.
## Using with make
```bash
# complete cycle: build image, run container, remove image
% make build run clean# run container passing all possible cli arguments to override
% make run URL=https://google.com TIME=10 SLEEP_INTERVAL=1# run tests
% make test
```## Using with docker compose
```bash
# build image from Dockerfile and run container from it
% docker compose --profile prd up# build image from Dockerfile-dev and run dev container from it
% docker compose --profile dev up
```