Closed asfimport closed 7 years ago
Mayank Upadhyaya (migrated from Bugzilla): 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
@pmouawad (migrated from Bugzilla): Author: pmouawad Date: Thu Sep 7 20:14:57 2017 New Revision: 1807645
URL: http://svn.apache.org/viewvc?rev=1807645&view=rev Log: https://github.com/apache/jmeter/issues/4479 - Max/Min threads are interchanged in Graphite and InfluxDB backend listener https://github.com/apache/jmeter/issues/4479
Modified: jmeter/trunk/src/components/org/apache/jmeter/visualizers/backend/UserMetric.java jmeter/trunk/xdocs/changes.xml
@pmouawad (migrated from Bugzilla): Thanks for report !
Mayank Upadhyaya (Bug 61493): package org.apache.jmeter.visualizers.backend;
/**
using a sliding window of SLIDING_WINDOW_SIZE */ public int getMaxActiveThreads() { return (int) usersStats.getMin(); }
/**
using a sliding window of SLIDING_WINDOW_SIZE */ public int getMeanActiveThreads() { return (int) usersStats.getMean(); }
/**
using a sliding window of SLIDING_WINDOW_SIZE */ public int getMinActiveThreads() { return (int) usersStats.getMax(); }
/**
*getMaxActiveThreads() and getMinActiveThreads() functions are interchanged
Severity: normal OS: All