You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sandra John (Bug 65981):
We are running a distributed jmeter test for 40 minutes, 8hours & different time configurations.
When the HTML Report is created for jmeter, in that the total number of samples for the 40 minutes test is 284650 but when I queried jmeter table with raw data for the same time period, it showed 207494 samples. ~80000 rows of data seems to be missing.
Can the InfluxDBRawDataListener be tuned to not miss any rows of data to be inserted. The difference increases exponentially with an increase in rampup time.
Severity: normal
OS: Mac OS X 10.1
The text was updated successfully, but these errors were encountered:
Hello, I encountered this issue as well. Are there any plans to take action on this?
Taking a look at the code for InfluxDBRawBackendListenerClient and InfluxDBBackendListenerClient I noticed that the function teardownTest() includes the following code for InfluxDBBackendListenerClient:
// Send last set of data before endinglog.info("Sending last metrics to InfluxDB");
sendMetrics();
This is not present on InfluxDBRawBackendListenerClient, it just calls:
Is it possible to tell if it's the latter metrics that are not being sent? Or could it be other issues e.g. network or influx issues?
If so, please submit a PR do add this to the Raw listener.
@ham1 after some testing, I found that this was not actually the latter metrics not being sent. The issue is, if you have sent multiple requests with the same timestamp, status and transaction values (in general, same tags), InfluxDB will override the previous entry when inserting a new one. I found that this usually happens with the first iteration of requests that Jmeter sends when running multiple threads.
I created a PR for this, there are more details there. (#5785)
Sandra John (Bug 65981):
We are running a distributed jmeter test for 40 minutes, 8hours & different time configurations.
When the HTML Report is created for jmeter, in that the total number of samples for the 40 minutes test is 284650 but when I queried jmeter table with raw data for the same time period, it showed 207494 samples. ~80000 rows of data seems to be missing.
Can the InfluxDBRawDataListener be tuned to not miss any rows of data to be inserted. The difference increases exponentially with an increase in rampup time.
Severity: normal
OS: Mac OS X 10.1
The text was updated successfully, but these errors were encountered: