2019-09-14 23:59:05 +00:00
|
|
|
# gatus
|
|
|
|
|
|
|
|
[![Docker pulls](https://img.shields.io/docker/pulls/twinproduction/gatus.svg)](https://cloud.docker.com/repository/docker/twinproduction/gatus)
|
2019-09-04 23:37:13 +00:00
|
|
|
|
2019-09-22 02:39:28 +00:00
|
|
|
**Status:** IN PROGRESS
|
|
|
|
|
2019-09-14 23:25:59 +00:00
|
|
|
A service health dashboard in Go that is meant to be used as a docker
|
|
|
|
image with a custom configuration file.
|
2019-09-11 01:05:57 +00:00
|
|
|
|
|
|
|
|
2019-09-09 01:07:08 +00:00
|
|
|
## Usage
|
2019-09-04 23:37:13 +00:00
|
|
|
|
|
|
|
```yaml
|
|
|
|
services:
|
2019-09-09 01:07:08 +00:00
|
|
|
- name: twinnation # Name of your service, can be anything
|
2019-09-04 23:37:13 +00:00
|
|
|
url: https://twinnation.org/actuator/health
|
2019-09-14 23:25:59 +00:00
|
|
|
interval: 15s # Duration to wait between every status check (opt. default: 10s)
|
2019-09-04 23:37:13 +00:00
|
|
|
conditions:
|
|
|
|
- "$STATUS == 200"
|
2019-09-09 01:07:08 +00:00
|
|
|
- name: github
|
|
|
|
url: https://api.github.com/healthz
|
|
|
|
conditions:
|
|
|
|
- "$STATUS == 200"
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2019-10-28 01:17:55 +00:00
|
|
|
## Docker
|
|
|
|
|
|
|
|
Building the Docker image is done as following:
|
2019-09-09 01:07:08 +00:00
|
|
|
|
|
|
|
```
|
2019-10-28 01:17:55 +00:00
|
|
|
docker build . -t gatus
|
2019-09-09 01:07:08 +00:00
|
|
|
```
|
2019-09-14 23:25:59 +00:00
|
|
|
|
2019-10-28 01:17:55 +00:00
|
|
|
You can then run the container with the following command:
|
2019-09-14 23:25:59 +00:00
|
|
|
|
2019-10-28 01:17:55 +00:00
|
|
|
```
|
|
|
|
docker run -p 8080:8080 --name gatus gatus
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## Running the tests
|
2019-09-14 23:25:59 +00:00
|
|
|
|
|
|
|
```
|
2019-10-28 01:17:55 +00:00
|
|
|
go test ./... -mod vendor
|
2019-09-14 23:25:59 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## Using in Production
|
|
|
|
|
|
|
|
See the [example](example) folder.
|