Source code for Statistical Visualizer plugin for Apache Jmeter 2.2
I just released the source code for the other Apache Jmeter plugin that I host here. Just go to the end of this page to download the file and get instructions.
Tags: apache, host, instructions, jmeter, page, plugin, released, source
This entry was posted
on Wednesday, January 17th, 2007 at 7:25 am and is filed under java.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.
June 27th, 2007 at 1:33 pm
Hi Ruben,
Thanks for this plugin. We use its output as part of our deployment/acceptance process. Instead of making a screenshot of JMeter after every measurement run, I’ve changed the code slightly. This way, it writes its chart to a file after a measurement run.
Here are the changes. You might find them useful.
Regards, Walter van Iterson
In StagAggVisualizer.java, around line 277:
public void testStopped() { try { _model.testStopped(); updateChart(); saveChart(); } catch (Exception e) { e.printStackTrace(); } }
/** * Saves the chart to a file called chart.png, in the directory where * jmeter was started. */ private void saveChart() { try { ChartUtilities.saveChartAsPNG(new File(”chart.png”), _chart, 800, 500); } catch (IOException ioe) { System.out.println(”Unable to save chart: ” + ioe); } }
June 27th, 2007 at 1:41 pm
Interesting I will try to merge those changes in the plugin as soon as I have some spare time
February 28th, 2008 at 12:37 pm
Hi Ruben, The plugin is great - thanks. I had to made one small change to get the ‘Clear All’ to work in the latest jmeter (2.3.1). Without the change, ‘Clear All’ caused an AbstractMethodError stack trace and the data was not cleared. The Clearable interface has changed in jmeter_core, so I just changed the method signature from: public void clear() to public void clearData() and now it works a treat! Cheers, Dan
May 26th, 2008 at 1:20 pm
Please, send this short mail to Walter van Iterson
Hello, I saw on the web site of National Instrument you wrote an JNI developpement for interfacing a PVI 6527 card to Java by the means of JNI.
I have to write a Java software using this card and the java must be notified when an input change.
Is that possible to see your source code ?
Many thans in advance.
Best regards
Thierry Vorms DSDLine