Sky-meter is a synthetic endpoint checker. You can deploy this on your infra and run checks from your infa and set alerts. Here we are using the go httptrace library.
Currenly we have addded Database support. The endpoints and http output are now being saved in Database. We also have a sentry integration to catch the runtime errors.
Development is in progress
We have integrated SMTP and Opsgenie, more integrations are in pipeline Currently the project is under developmet. You may have to experience some glitches at this moment.
GO version: 1.18
Postgres : 15.0
- Ubuntu 22.10
- alpine(docker)
- Macos
We are highly recommending to run th app as docker container. See Docker Hub Image https://hub.docker.com/r/soorajsky/sky-meter
Variable | Type | Example |
---|---|---|
DnsServer | string | 8.8.8.8 |
Port | string | 8000 |
EmailPass | string | youremailpass |
EmailFrom | string | from@gmail.com |
EmailPort | string | 583 |
EmailServer | string | smtp.gmail.com |
OpsgenieSecret | string | examplesecret |
SentryDsn | string | exapledsnvalue |
Mode | string | prod |
DbUrl | string | host=localhost user=postgres password=postgres dbname=postgres port=5433 sslmode=disable |
To add a URL to minitoring is pertty simple. Create settings.yml to add your endpoints to monitor. See an example of settings.yml below
opegenie:
enabled: false
email:
enabled: true
groups:
- name: prod
emails:
- reviceremail@gmail.com
- reciver@yahoo.com
- name: dev
emails:
- reviceremail@gmail.com
- reciver@yahoo.com
domains:
- name: https://skywalks.in
enabled: true
timeout: 10
skip_ssl: false
frequency: 10
group: dev
- name: https://sky-meter.skywalks.in
enabled: true
timeout: 10
skip_ssl: false
frequency: 60
group: dev
- name: https://github.com
enabled: true
timeout: 10
skip_ssl: false
frequency: 60
group: prod
- name: https://githcccubs.com
enabled: true
timeout: 10
skip_ssl: false
frequency: 60
group: prod
timeout : Timeout of request in Millisecond (int)
skip_ssl : set flase if you want to skip the ssl verification (bool)
frequency : frequency of health check in secont (int)
group : Group settings
Clone the code
$ git clone https://github.com/sooraj-sky/sky-meter.git
$ cd sky-meter
Run the postgres docker container (skip this step if you already have a database)
$ docker-compose up -d
Export ENV variables (Sentry will work only in dev mode)
If Email is disbled on settings.yml the following variables are not needed.
- EmailPass
- EmailFrom
- EmailPort
- EmailServer
SentryDsn is only needed when Mode=dev
$ export DnsServer="8.8.8.8" #requied
$ export DbUrl="host=localhost user=postgres password=postgres dbname=postgres port=5433 sslmode=disable" #requied
$ export EmailPass="your-pass-here" #requied when Email is Enabled
$ export EmailFrom="youremail@server.com" #requied when Email is Enabled
$ export EmailPort="587" #requied when Email is Enabled
$ export EmailServer="smtp.server-address-here.com" #requied when Email is Enabled
$ export OpsgenieSecret="your-opsgenie-key-here" #requied when Opsgenie is Enabled on settings.yml
$ export Mode="dev"
$ export SentryDsn="your-DSn-key-here" #requied when Mode="dev"
Run the project
$ go run cmd/main.go
we are using concourse CI for Main Branch
For release branch we have Github Actions