Flask - 性能分析(Profiling,profiler,profile)


1. 疑問

@app.cli.command()
@click.option('--length', default=25,
              help='Number of functions to include in the profiler report.')
@click.option('--profile-dir', default=None,
              help='Directory where profiler data files are saved.')
def profile(length, profile_dir):
    """Start the application under the code profiler."""
    from werkzeug.contrib.profiler import ProfilerMiddleware
    app.wsgi_app = ProfilerMiddleware(app.wsgi_app, restrictions=[length],
                                      profile_dir=profile_dir)
    app.run(debug=False)

flask web狗書的 git reset --hard 16b
flask profile --profile-dir="./profile",生成了后綴為*.prof的文件,我怎么查看這些文件呢?
我發起了一個issue:https://github.com/miguelgrinberg/flasky/issues/365

2. 解決

import sys
from pstats import Stats

my_stat = Stats('file.name', stream=sys.stdout)
my_stat.print_stats()


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM