⛑ Automated developer-oriented status page
Go to file
2020-04-20 17:58:51 -04:00
.github/workflows Update build job 2020-04-10 16:50:29 -04:00
client Add support for headers, method, body and json path with arrays 2020-04-14 19:20:00 -04:00
config Add support for headers, method, body and json path with arrays 2020-04-14 19:20:00 -04:00
core Improve documentation and panic on invalid service 2020-04-14 20:13:06 -04:00
example Prevent multiple services from being evaluated at the same time 2020-04-06 18:58:13 -04:00
jsonpath Minor update 2020-04-14 20:31:30 -04:00
metric Implement Prometheus metrics 2019-11-16 16:52:11 -05:00
static Remove console logs 2020-04-20 17:58:51 -04:00
vendor Update to Go 1.14 2020-04-10 16:35:55 -04:00
watchdog Add support for headers, method, body and json path with arrays 2020-04-14 19:20:00 -04:00
.dockerignore Add .idea to .dockerignore 2019-10-20 22:38:50 -04:00
.gitignore Remove .idea folder 2019-11-24 13:27:52 -05:00
config.yaml Improve documentation and panic on invalid service 2020-04-14 20:13:06 -04:00
Dockerfile Store config in config instead of root directory 2019-12-28 12:55:00 -05:00
go.mod Update to Go 1.14 2020-04-10 16:35:55 -04:00
go.sum Go mod vendor 2019-11-16 16:52:11 -05:00
LICENSE.md Rename LICENSE to LICENSE.md 2019-09-03 22:35:56 -04:00
main.go Add support for headers, method, body and json path with arrays 2020-04-14 19:20:00 -04:00
README.md Update README.md 2020-04-18 12:13:09 -04:00

gatus

build Docker pulls

A service health dashboard in Go that is meant to be used as a docker image with a custom configuration file.

I personally deploy it in my Kubernetes cluster and have it monitor the status of my core applications: https://status.twinnation.org/

Usage

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.

Here's a simple example:

metrics: true         # Whether to expose metrics at /metrics
services:
  - name: twinnation  # Name of your service, can be anything
    url: https://twinnation.org/health
    interval: 15s     # Duration to wait between every status check (default: 10s)
    conditions:
      - "[STATUS] == 200"         # Status must be 200
      - "[BODY].status == UP"     # The json path "$.status" must be equal to UP
      - "[RESPONSE_TIME] < 300"   # Response time must be under 300ms
  - name: example
    url: https://example.org/
    interval: 30s
    conditions:
      - "[STATUS] == 200"

Note that you can also add environment variables in the your configuration file (i.e. $DOMAIN, ${DOMAIN})

Configuration

Parameter Description Default
metrics Whether to expose metrics at /metrics false
services[].name Name of the service. Can be anything. Required ""
services[].url URL to send the request to Required ""
services[].conditions Conditions used to determine the health of the service []
services[].interval Duration to wait between every status check 10s
services[].method Request method GET
services[].body Request body ""
services[].headers Request headers {}

Conditions

Here are some examples of conditions you can use:

Condition Description Passing values Failing values
[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
[BODY] == 1 The body must be equal to 1 1 literally anything else
[BODY].data.id == 1 The jsonpath $.data.id is equal to 1 {"data":{"id":1}} literally anything else
[BODY].data[0].id == 1 The jsonpath $.data[0].id is equal to 1 {"data":[{"id":1}]} literally anything else

NOTE: [BODY] with JSON path (i.e. [BODY].id == 1) is currently in BETA. For the most part, the only thing that doesn't work is arrays.

Docker

Building the Docker image is done as following:

docker build . -t gatus

You can then run the container with the following command:

docker run -p 8080:8080 --name gatus gatus

Running the tests

go test ./... -mod vendor

Using in Production

See the example folder.