- Create a new check in Pingdom
- Give it a name that you'll remember, like
accounting-watchman - Set your check interval. We recommend 1m or 5m checks.
- Plug in the endpoint url, like `https://accounting.waveapps.com/watchman/
- Open up
Optional Settings. UnderCheck for string, change the first dropdown toShould not contain, and add"ok": falsein the input field - Test your check, and then save it if everything looks good!
Last active
August 29, 2015 13:57
-
-
Save mwarkentin/9906375 to your computer and use it in GitHub Desktop.
django-watchman blog post
-
Install
django-watchman:pip install django-watchman
-
Add
watchmanto yourINSTALLED_APPSsetting:INSTALLED_APPS = ( ... 'watchman', )
-
Include the watchman URLconf in your project
urls.py:url(r'^watchman/', include('watchman.urls')),
-
Start the development server and visit
http://127.0.0.1:8000/watchman/to get a JSON response of your backing service statuses:{ "databases": [ { "default": { "ok": true } } ], "caches": [ { "default": { "ok": true } } ] }
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment