Tsung

rpm –q gcc

rpm –q perl

确认已安装gcc perl  ncurses-devel

Tsung是用erlang写的需要安装erlang

# wget http://www.erlang.org/download/otp_src_17.0.tar.gz

# tar -zxvf otp_src_R14B04.tar.gz

# cd otp_src_R14B04

# ./configure --prefix=/usr/local/erlang

# make

# make install

安装Tsung

# wget http://tsung.erlang-projects.org/dist/tsung-1.5.1.tar.gz

# tar -zxvf tsung-1.4.2.tar.gz

# cd tsung-1.4.2

# ./configure --prefix=/usr/local/tsung --with-erlang=/usr/local/erlang

# make

# make install

安装perl的Template

Tsung
生成统计报告时需要用到该模板

# wget
http://www.cpan.org/authors/id/A/AB/ABW/Template-Toolkit-1.07.tar.gz

# tar -zxvf Template-Toolkit-1.07.tar.gz

# cd Template-Toolkit-1.07

# perl Makefile.PL

# make

# make test

# make install

gunlop安装

wget http://ftp.cstug.cz/pub/CTAN/graphics/gnuplot/4.6.5/gnuplot-4.6.5.tar.gz

tar zxvf gnuplot-4.6.5.tar.gz

cd gnuplot-4.6.5

./configure --prefix=/usr/local/gnulot

make

make install

确定gnuplot支持png,输入shell命令:gnuplot

gnuplot> set terminal

然后按回车确认是否已经支持png,看到下面这行,说明已经支持了:

1.   png  PNG images using libgd and TrueType fonts 

退出gnuplot的命令为:exit

Tsung,布布扣,bubuko.com

时间: 2024-10-12 13:22:22

Tsung的相关文章

压力测试工具tsung用法简介

tsung是用erlang开发的一款简单易用的压力测试工具,可以生成成千上万的用户模拟对服务器进行访问.目前对tsung的理解也仅限于会简单的应用,其内部结构没有深入研究过. 1.安装 tsung是用erlang编写的,所以首先安装erlang的运行环境.然后就是按照tsung的官网下载编译tsung.需要注意的是,生成测试报告需要gnuplot和perl的支持,其中perl需要安装Template扩展.具体安装过程请看相关手册或者google之. 2.配置文件 默认情况下,tsung会加载配置

tsung生成报表时报错

[[email protected]10-6-27-80 20141229-2327]# /usr/lib64/tsung/bin/tsung_stats.pl Use of uninitialized value $version in pattern match (m//) at /usr/lib64/tsung/bin/tsung_stats.pl line 130. warn, last interval (5) not equal to the first, use the first

压力测试工具tsung

tsung是用erlang开发的一款简单易用的压力测试工具,可以生成成千上万的用户模拟对服务器进行访问.目前对tsung的理解也仅限于会简单的应用,其内部结构没有深入研究过. 1.安装 tsung是用erlang编写的,所以首先安装erlang的运行环境.然后就是按照tsung的官网下载编译tsung.需要注意的是,生成测试报告需要gnuplot和perl的支持,其中perl需要安装Template扩展.具体安装过程请看相关手册或者google之. 2.配置文件 默认情况下,tsung会加载配置

LINUX 安装tsung 对OPENFIRE 进行压力测试

参考资料:  http://www.centoscn.com/image-text/install/2014/0818/3503.html  http://my.oschina.net/jielucky/blog/167405  http://blog.csdn.net/bxc168/article/details/6020683 需要用到的软件包: 要用的软件包有第三个软件包,第四个和第五个软件包 1.在终端先执行,输入 yum -y install make gcc gcc-c++ kern

基于Locust、Tsung的百万并发秒杀压测案例[转发]

原博客地址http://f.dataguru.cn/article-9116-1.html 不久前,数人云联合清华大学交叉信息研究院 OCP 实验室通过 10 台 OCP 服务器成功承载了百万并发 HTTP 请求. 此次实验设立的目标是在物理资源最小值的情况下完成 100 万并发处理,通过此次实验,最大化验证了基于 Mesos 和 Docker 技术的数人云 DCOS (数据中心操作系统)承载高压的能力. 百万压测工具与硬件 压测工具 本次选择的加压工具是分布式压测工具 Locust + Tsu

tsung -- 压力测试利器

Tsung 是一个压力测试工具,可以测试包括HTTP, WebDAV, PostgreSQL, MySQL, LDAP, and XMPP/Jabber等服务器.针对 HTTP 测试,Tsung 支持 HTTP 1.0/1.1 ,包含一个代理模式的会话记录.支持 GET.POST 和 PUT 以及 DELETE 方法,支持 Cookie 和基本的 WWW 认证,同时还支持 SSL. Tsung是使用以并发性出名的erlang编写而成.用其进行benchmark是比较方便的选择. tsung的使用

执行tsung时报"Maximum number of concurrent users in a single VM reached

[[email protected] ~]# tsung  -f jabber_register.xml startStarting Tsung"Log directory is: /root/.tsung/log/20141122-0639""Maximum number of concurrent users in a single VM reached and 'use_controller_vm' is true, can't start new beam !!! C

熟知tsung.xml配置文件

6.1.文件结构 默认的encoding是utf-8,你也可以使用以下不同的encoding:<?xml version="1.0" encoding="ISO-8859-1"?> 脚本被封在tsung标签中: <?xml version="1.0"?> <!DOCTYPE tsung SYSTEM "/usr/share/tsung/tsung-1.0.dtd" [] > <tsun

tsung文档说明

一.默认编码:utf-8,你可以根据需要进行修改,如<?xml version=”1.0″ encoding=”ISO-8859-1″?>二.xml文件的结构先整体了解xml文件的结构,它是由下面这些标签构成2.1顶级标签<tsung>2.2客户端标签<clients>2.3服务端标签<servers>2.4监控标签<monitor>2.5负载标签<load>2.6选项标签<options>2.7过程标签<sessi