https://github.com/qbart/ohdeer
Oh! Deer! is a simple monitoring service/status page that verifies if your systems are healthy.
https://github.com/qbart/ohdeer
go http monitoring-tool
Last synced: 8 months ago
JSON representation
Oh! Deer! is a simple monitoring service/status page that verifies if your systems are healthy.
- Host: GitHub
- URL: https://github.com/qbart/ohdeer
- Owner: qbart
- License: mpl-2.0
- Created: 2020-11-04T16:43:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-03T23:22:01.000Z (over 5 years ago)
- Last Synced: 2025-03-29T06:33:13.515Z (about 1 year ago)
- Topics: go, http, monitoring-tool
- Language: Go
- Homepage:
- Size: 599 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Oh! Deer!
[](https://github.com/qbart/ohdeer/blob/master/LICENSE)
[](https://golang.org/)
[](https://goreportcard.com/report/github.com/qbart/ohdeer)
[](https://github.com/qbart/ohdeer/commits/master)
## Example config
```hcl
tls {
bind_address = ":1820"
tls_cert_file = ""
tls_key_file = ""
}
monitor "aws:eu-west-1" {
name = "AWS Europe"
service "api" {
name = "API"
http {
addr = "https://ohdeer.dev"
interval = 5
timeout = 10
expect "status" {
in = [200]
}
}
}
}
```