Jmeter 2.13后端监听器

时间:2015-06-05 12:27:24

标签: jmeter graphite grafana

我正在使用Jmeter 2.13并尝试新的监听器Backend监听器,我使用的是Windows。

我在windows中安装了grafana / graphite并从网页运行它 http:/ localhost:8080并且运行顺畅。 Grafana展示标准仪表板"共享仪表板"和'仪表板'。

在jmeter中,添加了一个监听器Backend listers并将其配置为默认值 如图片

enter image description here

在grafana中,我添加了一个新的数据源:

  • 名称= jmeter
  • Type = Graphite
  • url = http://localhost:2003
  • 访问:代理/直接(我测试了两者)
  • 基本认证:(否)

当我使用后端监听器在jmeter中运行测试时,grafana中没有显示任何内容。 我错过了什么,jmeter结果没有取代http://jmeter.apache.org/images/screenshots/grafana_dashboard.png

谢谢你的帮助, 达尼

1 个答案:

答案 0 :(得分:-1)

假设您使用InfluxDB作为后端时间序列数据库,请在Grafana的config.js文件中使用以下配置。

  datasources: {
    influxdb: {
      type: 'influxdb',
      url: "http://localhost:8086/db/jmeter",
      username: 'root',
      password: 'root',
    },
    grafana: {
      type: 'influxdb',
      url: "http://localhost:8086/db/grafana",
      username: 'root',
      password: 'root',
      grafanaDB: true
    },
  },

还要检查" http://localhost:8086",确保您的InfluxDB服务器已启动并正常运行。它应该显示连接到Influxdb的Web控制台的登录页面。

最后,启用" DEBUG"在jmeter.properties文件(log_level.jmeter = DEBUG)中登录JMeter并分享有关您在日志中看到的错误的更多信息,如果问题仍然存在。