zoukankan      html  css  js  c++  java
  • Jmeter之性能测试插件PerfMon Metrics Collector监听器,实时监听服务器资源(十四)(转载)

    Servers Performance Monitoring

    Introduction

    During a load test, it is important to know the health of the servers loaded. It is also nice to see if you are targeting a cluster if the load is correctly dispatched. To address this, the plugin package now supports server monitoring! Using it, you can monitor CPU, Memory, Swap, Disks I/O and Networks I/O on almost all platforms!

    Here is how the plugin looks like. It shows the CPU usage of 4 servers involved in the load test:

    Metrics Collected

    Since version 0.5.0 the Server Agent tool supports collecting over 75 system metrics. See full list.

    How it works

    Concept

    JMeter cannot retrieve by default server metrics except Tomcat ones. To overcome this situation, we have developed a server agent which will get performance data for JMeter. The agent uses the SIGAR open source library. It is composed of a Java common part and native libraries per OS.

    Usage

    GUI Mode

    In GUI mode, just add the listener, define servers and metric types to monitor, ensure the agent is running at remote server and is not blocked by a firewall, then run the test. The values will be displayed at real time chart.

    Non GUI Mode

    If you run JMeter in non GUI mode and want to save monitoring data to file, just configure result file saving in GUI as you do with other listeners. After running the test you may load saved file into GUI and see the values timeline.

    PerfMon Server Agent

    Installation

    You do not need any root/admin privilege. You can just unzip the the ServerAgent-X.X.X.zip somewhere on the server. Then launch the agent using startAgent.sh script on Unix, or startAgent.bat script on Windows.

    The agent is written in Java, so you will need JRE 1.4+ to run it. Note you can create yourself the agent package which includes its own JRE so you don't have to install java on the server (We tested it on windows platform). To do this, just create a JRE folder in the agent folder and copy one installed JRE inside. Change the java command inside the .bat file to the path to the java executable and it will work.

    Once the agent is running, you can use the PerfMon Metrics Collector Listener to connect to the agents. You can add multiple servers to monitor, one graph can display several kinds of metrics (cpu, memory, etc...), auto-zooming rows for best view.

    Usage

    To start the agent, simply run startAgent bat/sh file. It will open UDP/TCP server ports where JMeter will connect and query the metrics. Some information will be printed to standard output, informing you on problems gathering metrics (logging verbosity regulated with --loglevel parameter).


    PerfMon Metrics Collector and Server Agent原理和使用可以查看官方文档

    具体可以查看官方的文档: 
    https://jmeter-plugins.org/wiki/PerfMon/

    https://jmeter-plugins.org/wiki/PerfMonAgent/ 


    下面对环境进行配置:

    第一步:https://jmeter-plugins.org/wiki/PerfMonAgent/下载ServerAgent-2.2.1.zip,将ServerAgent-2.2.1.jar上传到被测服务器,解压可以直接运行 (Windows环境,双击ServerAgent.bat启动;linux环境执ServerAgent.sh启动,默认使用4444端口)

    第二步:https://jmeter-plugins.org/downloads/old/下载JMeterPlugins-Standard-1.4.0.zip和JMeterPlugins-Extras-1.4.0.zip 

    PS:jmeter的plugin1.4.0的只支持jmeter3.2以下,不包括3.2!!! 
    第三步:然后解压两个zip包,把jar文件拷贝到/lib/ext文件夹下,环境配置就完成了。

    新建测试用的取样器,并在监听器选择jp@gc - PerfMon Metrics Collector和jp@gc - Transactions per Second两个监听器,ServerAgent默认是4444端口,也可以修改,比如:./startAgent.sh –udp-port 0 –tcp-port 3450这样

     进行加压的结果


    在压测性能过程中,有一点非常非常非常重要:

    Non GUI Mode

    If you run JMeter in non GUI mode and want to save monitoring data to file, just configure result file saving in GUI as you do with other listeners. After running the test you may load saved file into GUI and see the values timeline.

    Non GUI Mode
    
    If you run JMeter in non GUI mode and want to save monitoring data to file, just configure result file saving in GUI as you do with other listeners. After running the test you may load saved file into GUI and see the values timeline.

    压测过程中一定要在 NON-GUI模式进行压测,这也是很多用JM的人经常忽略的地方,如果一个测试人员用JM压测性能的时候,还使用GUI模式压测,那么能够立马体现你的专业水平很low。

    本篇文章只做GUI模式压测演示,需要查看如何进行NON-GUI模式进行,请查看小七前几篇文章。

  • 相关阅读:
    Oracle-创建PDB
    win10怎么看IP地址、怎么看主机名
    怎么读dll文件
    Windows的注册表是什么?
    DbHelperOra类的相关链接(没看)
    C#中//注释和///注释的区别
    有关C#的序列化
    【智能指针 | 01】std::shared_ptr的使用教程
    coreump
    d
  • 原文地址:https://www.cnblogs.com/yuany66/p/10979486.html
Copyright © 2011-2022 走看看