1

我正在尝试使用 tsung(负载测试)测试我的 Tigase XMPP 服务器。tsung 从 .csv 文件中读取了“用户名;密码”列表。对于基本测试,.csv 文件仅包含 3 个用户:user1、user2 和 user3。

在 tsung.xml 配置文件中,我配置了每秒 12.5 个连接,每个连接保持 2000 秒。

我有几个问题:

  1. 如果我只有 3 个用户,那么 tsung 应该在 3 个都连接后做什么?

  2. 在输出图(graphs-user-simultaneous)中,我在一段时间后看到了 2000 个连接用户。怎么会这样?

  3. 红线和绿线有什么区别?我在某处读到“已连接”是当前已连接,如果是真的,那么绿线是什么意思?

宗状态:

Tsung is running [OK]
 Current request rate:    32.59 req/sec
 Current users:           415
 Current connected users: 384
 Current phase:           1

宗图: graphes-用户-同时

谢谢!

4

1 回答 1

0
  1. 如果您按顺序读取文件,则第 4 次读取将获得第一行
  2. the number of generated user does not depends on your datas files but on what on set in the section
  3. green is the number of tsung users generated, and the red the number of them with a tcp session active on the target

More info in the docs https://tsung.readthedocs.org/en/latest/reports.html#available-stats

于 2013-11-15T16:41:44.260 回答