3

I am writing a JMeter suite to run on top of Jenkins and generating charts using the jmeter-graph-maven-plugin.

The tests are being executed with the jmeter-maven-plugin and generating the corresponding *.jtl files that the jmeter-graph plugin expects.

I would like to know all the types of graphs that can be generated through jmeter-graph-maven-plugin when I declare them on the pom.xml as such:

<graph>
    <pluginType>ThreadsStateOverTime</pluginType>
    <width>800</width>
    <height>600</height>
    <outputFile>${project.build.directory}/jmeter/results/ThreadsStateOverTime.png</outputFile>
</graph>

Is there a comprehensive list of all possible entries I could use?

Thanks,

Neill

Ardesco
  • 7,281
  • 26
  • 49
Neill Lima
  • 331
  • 3
  • 11

1 Answers1

5

Based on this documentation:

You can generate:

  • ThreadsStateOverTime = Active Threads Over Time
  • BytesThroughputOverTime
  • HitsPerSecond
  • LatenciesOverTime
  • ResponseCodesPerSecond
  • ResponseTimesDistribution
  • ResponseTimesOverTime
  • ResponseTimesPercentiles
  • ThroughputVsThreads
  • TimesVsThreads = Response Times VS Threads
  • TransactionsPerSecond
UBIK LOAD PACK
  • 33,980
  • 5
  • 71
  • 116