zoukankan      html  css  js  c++  java
  • InfluxDB数据库管理工具InfluxDBStudio使用

    InfluxDB Studio属于windows平台下对InfluxDB数据库进行管理的工具,简单易用。

    下载地址:百度

    1、下载后解压就可以使用,打开InfluxDBStudio-0.2.0/InfluxDBStudio.exe

    2、配置,输入InfluxDB的IP地址,端口是固定8086,我的数据库jmeter没有设置用户名密码,点击test,可以正常连接

    3、运行jmx脚本,InfluxDB中就会实时存入数据,打开jmeter表,就可以看到我的测试数据

    sql:

    SELECT *  FROM "jmeter" WHERE time > now() - 5m   order by time desc
    
    SELECT time,application,hit,count,avg,transaction,statut  FROM "jmeter" WHERE time > now() - 5m   order by time desc

    4、通过grafana查看交易曲线运行情况,TPS结果和数据库中显示一致

      
  • 相关阅读:
    strncat_s
    资源编译器 (.rc) 文件
    C++ Namespace 详解
    Structure Definitions
    SetParent
    C++笔记(1)explicit构造函数
    .def
    tellg()和tellp()
    Data Groups
    Messages
  • 原文地址:https://www.cnblogs.com/zhuque/p/14409631.html
Copyright © 2011-2022 走看看