Django application to create availability statistics of web servers
This app has to be integrated into an existing django website.
The purpose of this application is to establish an HTTP connection with a web server list in order to make availability statistics.
INSTALLED_APPS = [
...
'django_ping_me',
]
path('ping-me/', include(('django_ping_me.urls', 'ping_me'))),
Run python manage.py migrate
to create models.
Start the development server and visit http://127.0.0.1:8000/ping-me to check if everything is ok.
You can add a templates/ping_me folder in your base application to override default templates.
Have a look on default templates to see how to override them. Keep in mind that some features (like edit or delete a server) use bootstrap popups and AJAX calls.