如何修复JMeterPluginsCMD“缺少插件类型规范”错误

时间:2019-08-12 16:27:00

标签: windows jmeter jmeter-plugins

我正在尝试在Windows上使用JMeterPluginsCMD在运行JMeter之后生成负载测试结果图。我手动安装了插件,因为无法使用JMeter插件管理器。 (我没有需要配置的网络信息)。当我运行简单的命令.\JMeterPluginsCMD.bat时,我收到一条错误消息。该错误消息我该怎么办?

这是错误消息ERROR: java.lang.IllegalArgumentException: Missing plugin type specification

这是完整的错误输出:

~\Desktop\apache-jmeter-5.1.1\bin> .\JMeterPluginsCMD.bat
2019-08-12 12:10:29,564 WARN o.a.j.u.JMeterUtils: Exception 'null' occurred when fetching String property:'sampleresult.default.encoding', defaulting to: ISO-8859-1
2019-08-12 12:10:29,571 WARN o.a.j.u.JMeterUtils: Exception 'null' occurred when fetching String property:'jmeterPlugin.prefixPlugins'
2019-08-12 12:10:29,572 INFO k.a.j.PluginsCMDWorker: Using JMeterPluginsCMD v. N/A
2019-08-12 12:10:29,574 INFO o.a.j.u.JMeterUtils: Setting Locale to en_US
2019-08-12 12:10:29,578 INFO k.a.j.JMeterPluginsUtils: Loading user properties from: C:\Path\apache-jmeter-5.1.1\bin\user.properties
2019-08-12 12:10:29,582 INFO k.a.j.JMeterPluginsUtils: Loading system properties from: C:\Path\apache-jmeter-5.1.1\bin\system.properties
ERROR: java.lang.IllegalArgumentException: Missing plugin type specification
*** Problem's technical details go below ***
Home directory was detected as: C:\Path\apache-jmeter-5.1.1\lib
Exception in thread "main" java.lang.IllegalArgumentException: Missing plugin type specification
        at kg.apc.jmeter.PluginsCMDWorker.checkParams(PluginsCMDWorker.java:78)
        at kg.apc.jmeter.PluginsCMDWorker.doJob(PluginsCMDWorker.java:104)
        at kg.apc.cmdtools.ReporterTool.processParams(ReporterTool.java:255)
        at kg.apc.cmdtools.PluginsCMD.processParams(PluginsCMD.java:62)
        at kg.apc.cmdtools.PluginsCMD.processParams(PluginsCMD.java:21)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at kg.apc.cmd.UniversalRunner.main(UniversalRunner.java:115)
~\Desktop\apache-jmeter-5.1.1\bin>

1 个答案:

答案 0 :(得分:1)

您缺少plugin-type parameter,例如:

JMeterPluginsCMD.bat --generate-png test.png --input-jtl results.jtl --plugin-type ResponseTimesOverTime --width 800 --height 600

您的插件jar应该位于lib / ext文件夹中

  

请注意,您需要安装相应的插件集,才能在CMD中使用Extras插件。