PHP interface for JMeter

We are studying the use of JMeter to test and test the load on our servers, but we would like the data from reports automatically uploaded to our database to be used with JCharts or, possibly, even imported into munin for graphical analysis and analysis. Does anyone know an interface that can help us achieve our goal? We would rather not waste time writing on our own if there is already a way to do this. From reading, I saw that JMeter data can be output in XML format, and we could just parse it, but were looking for a better option. Any suggestions or feedback are appreciated. Thanks in advance!

If anyone has a suggestion on a different path, please let me know!

+3
source share
4 answers

Maybe CSV is the best option for you. This is one of two formats, and then it should be trivial to import into the database. Do you need pointers? If so, let me know which database, etc.

+2
source

In addition to @, you can save the results as an XML file for processing by your php program.

0
source

Well, you can try this service now: Loadosophia.org

0
source

CSV is the best option. You can convert report.csv to HTML or you can dump into your database (your requirement).

0
source

All Articles