mirror of
https://github.com/TwiN/gatus.git
synced 2024-12-23 07:09:52 +01:00
23 lines
494 B
Markdown
23 lines
494 B
Markdown
|
## Usage
|
||
|
```console
|
||
|
docker-compose up
|
||
|
```
|
||
|
Once you've done the above, you should be able to access the Grafana dashboard at `http://localhost:3000`.
|
||
|
|
||
|
## Queries
|
||
|
Gatus uses Prometheus counters.
|
||
|
|
||
|
Total results per minute:
|
||
|
```
|
||
|
sum(rate(gatus_results_total[5m])*60) by (key)
|
||
|
```
|
||
|
|
||
|
Total successful results per minute:
|
||
|
```
|
||
|
sum(rate(gatus_results_total{success="true"}[5m])*60) by (key)
|
||
|
```
|
||
|
|
||
|
Total unsuccessful results per minute:
|
||
|
```
|
||
|
sum(rate(gatus_results_total{success="true"}[5m])*60) by (key)
|
||
|
```
|