You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dashboard for automatic monitoring of Flask web-services.
9
+
A dashboard for automatic monitoring of Flask web-services.
10
10
11
-
The Flask Monitoring Dashboard is an extension that offers four main functionalities with little effort from the Flask developer:
11
+
The Flask Monitoring Dashboard is an extension for Flask applications that offers four main functionalities with little effort from the Flask developer:
12
12
13
13
-**Monitor the performance and utilization:**
14
14
The Dashboard allows you to see which endpoints process a lot of requests and how fast.
@@ -20,21 +20,28 @@ The Flask Monitoring Dashboard is an extension that offers four main functionali
20
20
endpoint are also merged together, the Dashboard provides an overview of which functions are used in
21
21
which endpoint.
22
22
23
-
-**Monitor your test coverage:**
24
-
The Dashboard allows you to find out which endpoints are covered by unit tests, allowing also for integration with Travis for automation purposes.
25
-
For more information, see [this file](http://flask-monitoringdashboard.readthedocs.io/en/latest/functionality.html#test-coverage-monitoring)
26
-
27
23
-**Collect extra information about outliers:**
28
24
Outliers are requests that take much longer to process than regular requests.
29
25
The Dashboard automatically detects that a request is an outlier and stores extra information about it (stack trace, request values, Request headers, Request environment).
30
26
27
+
-**Collect additional information about your Flask-application:**
28
+
Suppose you have an User-table and you want to know how many users are registered on your Flask-application.
29
+
Then, you can run the following query: 'SELECT Count(*) FROM USERS;'. But this is just annoying to do regularly.
30
+
Therefore, you can configure this in the Flask-MonitoringDashboard, which will provide you this information per day (or other time interval).
31
+
32
+
31
33
The dashboard is automatically added to your existing Flask application.
32
34
You can view the results by default using the default endpoint (this can be configured to another route):
33
35
34
36
[/dashboard](http://localhost:5000/dashboard)
35
37
36
38
For more advanced documentation, take a look at the information on [this site](http://flask-monitoringdashboard.readthedocs.io/en/latest/functionality.html).
37
39
40
+
## Live demo
41
+
To view a live deployment of the Flask-MonitoringDashboard, check [this site](https://flask-monitoringdashboard.herokuapp.com/).
42
+
Use the credentials u:`admin`, p:`admin` to log in.
43
+
44
+
38
45
## Installation
39
46
To install from source, download the source code, then run this:
40
47
@@ -52,11 +59,20 @@ Adding the extension to your Flask app is simple:
52
59
53
60
app = Flask(__name__)
54
61
dashboard.bind(app)
62
+
63
+
## Feedback
64
+
In order to improve our Flask-MonitoringDashboard, we would like to hear from you! Therefore, we made a questionnaire
65
+
with a few questions. Filling in this form takes less than 3 minutes. You can find the form [here](https://goo.gl/forms/IqRrjGDDXe44q5ZV2).
66
+
67
+
Alternatively, feel free to write to [our email-address](mailto:flask.monitoringdashboard@gmail.com).
55
68
56
69
## Documentation
57
70
For more advanced documentation, see [this site](http://flask-monitoringdashboard.readthedocs.io).
58
-
If you run into trouble migrating from version 1.X.X to version 2.0.0, this site also helps you solve this.
71
+
If you run into trouble migrating from version 1.X.X to version 2.0.0, this site will help you solve this too.
0 commit comments