Package smartrics.jmeter.sampler

Examples of smartrics.jmeter.sampler.JmxSampleResult


    }

    public void add(SampleResult res) {
        if (res instanceof JmxSampleResult) {
            log.warn("INVOKED: " + res);
            JmxSampleResult result = (JmxSampleResult) res;
            String uri = result.getJmxUri();
            JmxGraphPanel graphPanel = graphTable.get(uri);
            if (graphPanel == null) {
                graphPanel = addGraph(result.getMemType(), uri);
                graphTable.put(uri, graphPanel);
            }
            ChartWrapper graph = graphPanel.getGraph();
            graph.setXAxisScalingFactor(1000);
            graph.putRawData(result.getStartTime(), result.getValue());
            renderChart(uri, graphPanel);
        }
    }
View Full Code Here

TOP

Related Classes of smartrics.jmeter.sampler.JmxSampleResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.