Performance tool httperf

httperf: A relatively well-known open source utility developed by HP, for Linux operating systems only

website: http://www.hpl.hp.com/research/linux/httperf

the source comes as a tar.gz archive and needs to be compiled using the standard method


1

2

3

4

5

./configure

./make

./make install

$ httperf --server 192.168.1.100 --port 80 --uri /index.html --rate 300 --num-conn 3000 --num-call 1 --timeout 5

in this example httperf will download http://192.168.1.100/index.html repeatedly, 300 times per seconds, resulting in a total of 30,000 requests.

--rate how many request should be sent every second

--num-conn the total amount of connections

--num-call how many requests should be sent per connection

--timeout quantity of seconds elapsed before a request is considered lost

If the success ratio is 100 percent or the response time near 0 ms, increase the request rate and run the rest again until the server shows signs of weakness,

once the results begin to look a little less perfect tweak the appropriate configuration directives and run the test again

时间: 2024-10-21 06:09:00

Performance tool httperf的相关文章

The DiskSpd Storage Performance Tool

https://gallery.technet.microsoft.com/DiskSpd-a-robust-storage-6cd2f223 http://blogs.technet.com/b/josebda/archive/2014/10/13/diskspd-powershell-and-storage-performance-measuring-iops-throughput-and-latency-for-both-local-disks-and-smb-file-shares.as

Linux Performance tool

https://www.tecmint.com/command-line-tools-to-monitor-linux-performance/ https://www.tecmint.com/linux-performance-monitoring-with-vmstat-and-iostat-commands/ https://www.tecmint.com/linux-performance-monitoring-tools/ https://geekflare.com/linux-per

Linux monitor tool

Tool          Description                      Base      Repositoryvmstat      all purpose performance tool              yes      yesmpstat      provides statistics per CPU              no      yessar          all purpose performance monitoring tool 

FW 常见的性能测试工具有: loadRunner/netperf/httperf/apache_ab/Apache JMeter

常见的性能测试工具有: loadRunner/netperf/httperf/apache_ab/Apache JMeter , 其中loadRunner属于付费软件,所以在这里不做介绍 netperf(HP公司维护的开源项目) 主要用来测量大数据量传输的时性能, 这也称作流或者单向流性能. 主要用来度量一个系统接收或者发送的数据有多快, 最简单的命令如下: /opt/netperf/netperf -H remotehost 此外, tcp_stream_script和tcp_range_sc

IOS基础面试题

最近离职了,找工作,光会做项目,对基础不熟,今天就总结了一点面试题. 废话不多说,上题吧: 1.objective-c中的数字对象都有哪些,简述它们与基本数据类型的区别是什么. 基本类型和C一样,主要是有int.long.double.float.char.void.bool.对于基本数据类型,不需要使用指针,NSNumber是OC的数字对象,需要考虑内存释放问题.数字类型有:NSInteger.CGFloat.数据对象有NSNumber.对象和变量的差别.可以拆装效果.其他的类型有NSStri

xcode里面使用Memory Leaks和Instruments检测内存泄漏

教程截图: Leaks和Instruments教程[检测内存泄露]" src="http://pic002.cnblogs.com/images/2011/283130/2011080816513182.jpg"> 作为一名无证程序员,无论你多么精通Objective-C的内存管理,随着时间的推移,你也不可避免的犯内存相关的错误.但通常因为代码量太大,以至于你不可能一行一行的去排除(等你解决完,你设计的动车早相撞了!) 幸运的是,苹果已经提供了一些好的方式来帮助你找到应

Python进行自动化测试工具

在自动化测试里Python用途很广,但是市面上测试工具不是很多,这里主要介绍的是一些Python测试的框架 1.单元测试 a.unittest.doctest:Python自带的单元测试框架 b.pyunit:Junit的Python版本 c.pytest.nose.zope.testing:pipy上第三方测试工具 2.Windows GUI测试a.pywinauto: 3.Web自动化测试 a.selenium:web driven b.robot framework:关键字驱动 c.pam

C#6.0新特性

C#6.0新特性怎么用 系列文章 Visual Studio 2015速递(1)——C#6.0新特性怎么用 前文提到过一个神器叫Resharper,功能强大,编码效率和代码质量那是蹭蹭的涨,但是神器的最大问题是太耗费资源了,每次系统提示内存不足的时候,那叫一个纠结啊.因此每次新的VS发布的时候都情不自禁的查看是否增强编辑功能,情不自禁的讨论一番,这次VS2015也不例外. 去年微软放出Roslyn的时候,微软就曾经放出过一个“尝鲜”版的VS编辑增强功能,恰恰就是重构(reflector),话说这

常见笔试题(三)

11.面向对象的三大特征,并作简单的介绍. 面向对象的三个基本特征是:封装.继承.多态. 封装是面向对象的特征之一,是对象和类概念的主要特性. 封装,也就是把客观事物封装成抽象的类,并且类可以把自己的 数据和方法只让可信的类或者对象操作,对不可信的进行信息隐藏.隐藏对象的属性和实现细节,仅对外公开接口,提高代 码安全性,封转程度越高,独立性越强,使用越方便. 继承是指这样一种能力:它可以使用现有类的所有功能,并在无需重新编写原来的类的情况下对这些功能进行扩展. 通过 继承创建的新类称为"子类&q