statusok icon indicating copy to clipboard operation
statusok copied to clipboard

Monitor your Website and APIs from your Computer. Get Notified through Slack, E-mail when your server is down or response time is more than expected.

Results 42 statusok issues
Sort by recently updated
recently updated
newest added

I am using the dockerfile provided in the repository, with the following configuration ` "mail": { "smtpHost": "smtp.gmail.com", "port": 587, "username": "[email protected]", "password": "XXXXX", "from": "[email protected]", "to": "[email protected]" } `...

Hello! I needed call API and Web Services SOAP, using complex type, cause that I created 2 properties in configuration file requests area. Bests, Alex

Is there a way to monitor a website from multiple locations so to compare response times for each client side-by-side?

Email notifications are sent with incorrect headers causing them to be blocked by most major email services (Google etc) Can be fixed by adding a valid from and subject to...

new feature contains(or not contains) config.json ` ... "requests":[ { "url":"http://localhost:5500", "requestType":"GET", "headers":{ }, "params":{ }, "checkEvery":5, "responseCode":200, "responseTime":800, "checkResponseBody" : { "checkType" : "contains", "matchFor" : "some String" }...

We try to build source, I got this error: ``` $ go build # ~/statusok ./statusok.go:40:17: cannot use cli.StringFlag literal (type cli.StringFlag) as type cli.Flag in slice literal: cli.StringFlag does...

my config.json ``` { "notifications":{ "dingding":{ "url": "https://oapi.dingtalk.com/robot/send?access_token=blablablablablalba", "requestType":"POST", "headers":{ "Content-Type":"application/json" } } }, "requests":[ { "url":"http://www.example.com", "requestType":"GET", "checkEvery":30, "responseTime":800 } ] } ``` Base on statusOK it did show...

This program should support the use of variables in the config.json file. Something like `${password}` or `{{password}}` should be replaced with environment variables from the system that the daemon is...

enhancement