码迷,mamicode.com
首页 > 编程语言 > 详细

Python项目性能测试

时间:2020-02-19 17:15:45      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:code   you   targe   com   链接   lan   监控   call   python2   

概述

压测过程中看的应用程序性能指标主要有tps和响应时间。Python2.5以后自带cProfile代码时间监控性能指标

详解

指标

cProfile:python -m cProfile -s tottime your_program.py  对应用程序的一个时间监控工具:监控程序的每一行代码

技术图片

  图(一)

ncalls:函数总共调用次数

tottime:这个函数总共调用花费时间

percall:每个调用平均花费时间

cumtime:总共累计花费时间

percall:每个调用的平均累积时间

filename:文件名

监控

 

参考链接:

https://blog.csdn.net/weixin_40304570/article/details/79459811

https://blog.csdn.net/weixin_34144848/article/details/90557228

Python项目性能测试

标签:code   you   targe   com   链接   lan   监控   call   python2   

原文地址:https://www.cnblogs.com/wangdadada/p/12331592.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!