2019-09-15 01:59:05 +02:00
|
|
|
# gatus
|
|
|
|
|
|
|
|
[![Docker pulls](https://img.shields.io/docker/pulls/twinproduction/gatus.svg)](https://cloud.docker.com/repository/docker/twinproduction/gatus)
|
2019-09-05 01:37:13 +02:00
|
|
|
|
2019-09-15 01:25:59 +02: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 03:05:57 +02:00
|
|
|
|
2019-11-11 22:15:35 +01:00
|
|
|
Live example: https://status.twinnation.org/
|
|
|
|
|
2019-09-11 03:05:57 +02:00
|
|
|
|
2019-09-09 03:07:08 +02:00
|
|
|
## Usage
|
2019-09-05 01:37:13 +02:00
|
|
|
|
2020-03-08 23:16:39 +01:00
|
|
|
By default, the configuration file is expected to be at `config/config.yaml`.
|
|
|
|
|
|
|
|
You can specify a custom path by setting the `GATUS_CONFIG_FILE` environment variable.
|
|
|
|
|
2019-09-05 01:37:13 +02:00
|
|
|
```yaml
|
2019-11-16 21:49:06 +01:00
|
|
|
metrics: true # Whether to expose metrics at /metrics
|
2019-09-05 01:37:13 +02:00
|
|
|
services:
|
2019-09-09 03:07:08 +02:00
|
|
|
- name: twinnation # Name of your service, can be anything
|
2020-04-07 00:58:13 +02:00
|
|
|
url: https://twinnation.org/health
|
2020-04-10 22:34:20 +02:00
|
|
|
interval: 15s # Duration to wait between every status check (default: 10s)
|
2019-09-05 01:37:13 +02:00
|
|
|
conditions:
|
2019-12-04 23:27:27 +01:00
|
|
|
- "[STATUS] == 200"
|
2020-04-10 22:34:20 +02:00
|
|
|
- "[RESPONSE_TIME] < 300"
|
2019-09-09 03:07:08 +02:00
|
|
|
- name: github
|
|
|
|
url: https://api.github.com/healthz
|
|
|
|
conditions:
|
2019-12-04 23:27:27 +01:00
|
|
|
- "[STATUS] == 200"
|
2019-09-09 03:07:08 +02:00
|
|
|
```
|
|
|
|
|
2019-12-04 23:27:27 +01:00
|
|
|
Note that you can also add environment variables in the your configuration file (i.e. `$DOMAIN`, `${DOMAIN}`)
|
|
|
|
|
2019-09-09 03:07:08 +02:00
|
|
|
|
2020-04-10 22:34:20 +02:00
|
|
|
### Conditions
|
|
|
|
|
|
|
|
Here are some examples of conditions you can use:
|
|
|
|
|
|
|
|
| Condition | Description | Values that would pass | Values that would fail |
|
|
|
|
| ------------------------------------- | ----------------------------------------- | ---------------------- | ---------------------- |
|
|
|
|
| `[STATUS] == 200` | Status must be equal to 200 | 200 | 201, 404, 500 |
|
|
|
|
| `[STATUS] < 300` | Status must lower than 300 | 200, 201, 299 | 301, 302, 400, 500 |
|
|
|
|
| `[STATUS] <= 299` | Status must be less than or equal to 299 | 200, 201, 299 | 301, 302, 400, 500 |
|
|
|
|
| `[STATUS] > 400` | Status must be greater than 400 | 401, 402, 403, 404 | 200, 201, 300, 400 |
|
|
|
|
| `[RESPONSE_TIME] < 500` | Response time must be below 500ms | 100ms, 200ms, 300ms | 500ms, 1500ms |
|
|
|
|
|
|
|
|
|
2019-10-28 02:17:55 +01:00
|
|
|
## Docker
|
|
|
|
|
|
|
|
Building the Docker image is done as following:
|
2019-09-09 03:07:08 +02:00
|
|
|
|
|
|
|
```
|
2019-10-28 02:17:55 +01:00
|
|
|
docker build . -t gatus
|
2019-09-09 03:07:08 +02:00
|
|
|
```
|
2019-09-15 01:25:59 +02:00
|
|
|
|
2019-10-28 02:17:55 +01:00
|
|
|
You can then run the container with the following command:
|
2019-09-15 01:25:59 +02:00
|
|
|
|
2019-10-28 02:17:55 +01:00
|
|
|
```
|
|
|
|
docker run -p 8080:8080 --name gatus gatus
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## Running the tests
|
2019-09-15 01:25:59 +02:00
|
|
|
|
|
|
|
```
|
2019-10-28 02:17:55 +01:00
|
|
|
go test ./... -mod vendor
|
2019-09-15 01:25:59 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## Using in Production
|
|
|
|
|
|
|
|
See the [example](example) folder.
|