Reputation: 164
I use have JMeter tests run by jmeter-maven-plugin.
Previously I used JMeter + InfluxDB + Grafana, but what should I do now in the case when I run my JMeter test by jmeter-maven-plugin? How can I send test result data to Grafana?
Thanks in advance for your answers.
Upvotes: 0
Views: 591
Reputation: 168207
You can do it with Backend Listener
org.apache.jmeter.visualizers.backend.influxdb.InfluxdbBackendListenerClient
from the "Backend Listener Implementation" dropdownPoint the Backend Listener to your own InfluxDB installation via influxdbUrl
parameter
Other parameters can be left as they are.
References:
Upvotes: 0