https://github.com/markruler/healthcheck
Are you healthy?
https://github.com/markruler/healthcheck
Last synced: about 2 months ago
JSON representation
Are you healthy?
- Host: GitHub
- URL: https://github.com/markruler/healthcheck
- Owner: markruler
- Created: 2023-11-15T11:56:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-01T00:08:05.000Z (over 1 year ago)
- Last Synced: 2025-03-24T11:49:33.531Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Healthcheck
## Python
```sh
# chmod +x healthcheck.py
# python3 healthcheck.py --url https://www.python.org --retry 3
./healthcheck.py -u https://www.python.org -r 3
```Jenkins 등의 CI 도구에서 console output을 실시간으로 확인하고 싶다면
[PYTHONUNBUFFERED=x](https://docs.python.org/3/using/cmdline.html#envvar-PYTHONUNBUFFERED) 옵션을 추가한다.## Shell Script
```sh
# chmod +x healthcheck.sh
./healthcheck.sh -u https://curl.se -r 3
```## JavaScript
```sh
# chmod +x healthcheck.js
# npm install --save=false yargs
./healthcheck.js -u https://nodejs.org -r 3
```