@@ -6,10 +6,10 @@ The Flask Monitoring Dashboard provides 4 main functionalities:
66This Flask extensions finds all your endpoints.
77You can choose which endpoints you want to monitor and which not.
88Monitoring and endpoint allows you to see which endpoints are being processed quickly, and which are not.
9- Additionally, it provides information about the performance of the endpoint throughout different versions.
9+ Additionally, it provides information about the performance of the endpoint throughout different versions and different users .
1010- ** Monitor your test coverage:**
1111Find out what endpoints are covered by unittest.
12- For more information, see Section 'TravisCI unit testing' .
12+ For more information, see [ this file ] ( http://flask-monitoringdashboard.readthedocs.io/en/latest/functionality.html#test-coverage-monitoring ) .
1313- ** Collect extra information about outliers:**
1414Outliers are requests that take way longer to process than regular requests.
1515The dashboard stores more information about outliers, such as:
@@ -24,7 +24,7 @@ When running your app, the dashboard van be viewed by default in the route:
2424 [/dashboard](http://localhost:5000/dashboard)
2525
2626### Status
27- [ ![ Build Status] ( https://travis-ci.org/flask-dashboard/Flask-Monitoring-Dashboard .svg?branch=master )] ( https://travis-ci.org/flask-dashboard/Flask-Monitoring-Dashboard .svg?branch=master )
27+ [ ![ Build Status] ( https://travis-ci.org/flask-dashboard/Flask-MonitoringDashboard .svg?branch=master )] ( https://travis-ci.org/flask-dashboard/Flask-MonitoringDashboard .svg?branch=master )
2828[ ![ Documentation Status] ( https://readthedocs.org/projects/flask-monitoringdashboard/badge/?version=latest )] ( http://flask-monitoringdashboard.readthedocs.io/en/latest/?badge=latest )
2929
3030## Installation
@@ -37,17 +37,17 @@ Or install with pip:
3737 pip install flask_monitoringdashboard
3838
3939### Setup
40- Adding the extension to your flask app is simple:
40+ Adding the extension to your Flask app is simple:
4141
4242 from flask import Flask
4343 import flask_monitoringdashboard as dashboard
4444
4545 app = Flask(__name__)
4646 dashboard.bind(app)
47-
47+
48+ ## Documentation
49+ For a more advanced documentation, see [ this site] ( http://flask-monitoringdashboard.readthedocs.io ) .
50+
4851## Screenshots
4952![ Screenshot 1] ( /docs/img/screenshot1.png )
5053![ Screenshot 2] ( /docs/img/screenshot2.png )
51-
52- ## Documentation
53- For a more advanced documentation, see [ this site] ( http://flask-monitoringdashboard.readthedocs.io ) .
0 commit comments