package org.apache.jmeter.visualizers.backend; /** * @return the max number of active threads for this test run * using a sliding window of SLIDING_WINDOW_SIZE */ public int getMaxActiveThreads() { return (int) usersStats.getMin(); } /** * @return the mean number of active threads for this test run * using a sliding window of SLIDING_WINDOW_SIZE */ public int getMeanActiveThreads() { return (int) usersStats.getMean(); } /** * @return the min number of active threads for this test run * using a sliding window of SLIDING_WINDOW_SIZE */ public int getMinActiveThreads() { return (int) usersStats.getMax(); } /** * @return finished threads */ *getMaxActiveThreads() and getMinActiveThreads() functions are interchanged
In Documentation its given http://jmeter.apache.org/usermanual/realtime-results.html Thread metrics are the following: <rootMetricsPrefix>test.minAT Min active threads <rootMetricsPrefix>test.maxAT Max active threads <rootMetricsPrefix>test.meanAT Mean active threads <rootMetricsPrefix>test.startedT Started threads <rootMetricsPrefix>test.endedT Finished threads
Author: pmouawad Date: Thu Sep 7 20:14:57 2017 New Revision: 1807645 URL: http://svn.apache.org/viewvc?rev=1807645&view=rev Log: Bug 61493 - Max/Min threads are interchanged in Graphite and InfluxDB backend listener Bugzilla Id: 61493 Modified: jmeter/trunk/src/components/org/apache/jmeter/visualizers/backend/UserMetric.java jmeter/trunk/xdocs/changes.xml
Thanks for report !
This issue has been migrated to GitHub: https://github.com/apache/jmeter/issues/4479