https://github.com/ulule/dekiteru
Dekiteru is a tool that check if a service is ready to use
https://github.com/ulule/dekiteru
Last synced: about 1 year ago
JSON representation
Dekiteru is a tool that check if a service is ready to use
- Host: GitHub
- URL: https://github.com/ulule/dekiteru
- Owner: ulule
- License: mit
- Created: 2017-11-23T11:15:54.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-10T10:03:47.000Z (almost 8 years ago)
- Last Synced: 2025-06-09T23:43:56.928Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 39.1 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dekiteru
Dekiteru is a tool that checks if a service is ready to use.
## Examples
```bash
# PostgreSQL
dekiteru check --service postgresql --parameter "dsn=postgres://localhost:5432?connect_timeout=5"
# Redis
dekiteru check --service redis --parameter "url=redis://localhost:16379/1"
# ElasticSearch
dekiteru check --service elasticsearch --parameter "url=http://localhost:9200"
# RabbitMQ
dekiteru check --service rabbitmq --interval 5 --retry 5
```
## Help
Supported services: `PostgreSQL`, `Redis`, `ElasticSearch` and `RabbitMQ`.
```
$ dekiteru help
NAME:
Dekiteru - Check if a service is ready to use
USAGE:
dekiteru [global options] command [command options] [arguments...]
VERSION:
0.1.0
COMMANDS:
check, c Check if a service is ready to use
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--help, -h show help
--version, -v print the version
```
## Authors
* [Geoffrey L.](https://github.com/toxinu)