flask-graphite
flask-graphite copied to clipboard
:chart_with_upwards_trend: Push useful metrics for each request without effort!
First of all, thanks for implementing such a great tool! ### Actual result Flask graphite ([source](https://github.com/numberly/flask-graphite/blob/8c39315981e5fc4041deb2c57e3978ccb6e1eb51/flask_graphite/utils.py#L15)) normalizes slashes `/` in endpoint paths by converting them to pipe character `|`. For...
@app.route('/person'): # measure total call and duration some validation check database call # measure total call and duration i do some validation checks and then execute a database call. Is...
Following #1 and [its quick fix](https://github.com/numberly/flask-graphite/commit/760e93deffedb732c5f32adf8f25fb40714fcfc3), we can end up in a situation where we try to use `app.graphite` but it doesn't exist. We should handle this and try to...
Especially on https://github.com/numberly/flask-graphite/commit/dd1683409c8143aa81dbf087c6e7eef3514136be :100: