muatik / flask-profiler

a flask profiler which watches endpoint calls and tries to make some analysis.
MIT License
752 stars 96 forks source link

class sql_alchemy some method not implemented #86

Closed ponytailer closed 6 years ago

ponytailer commented 6 years ago

In Class Sqlalchemy,

the method getMethodDistribution and getTimeseries are not implemeted

bochaga-masaval commented 6 years ago

Same issue here

ponytailer commented 6 years ago

@bochaga-masaval Many methods are not implemented。 I rewrite it with flask-sqlalchemy(MySQL)

bryan3189 commented 6 years ago

@huangxiaohen2738 How did you rewrite it with flask-sqlalchemy? Following is my current flask_profiler config: app.config["flask_profiler"] = { "storage": { "engine": "sqlalchemy", "db_url": app.config['SQLALCHEMY_DATABASE_URI'] }, "ignore": [ "^/static/.*" ] }

ponytailer commented 6 years ago

@bryangaikwad I write a new project by myself