From ad43226c30daec6b5d4a1379650994427361a3f8 Mon Sep 17 00:00:00 2001 From: earrage Date: Fri, 2 Nov 2018 14:40:55 -0700 Subject: Add minor enhancements to jmeter configuration - Add user-agent field to jmeter config yaml and jmeter jmx template that can be configured per URL in testplan - Add duration time that can be used in combination with ramp time. Duration is the total time of the test while ramp time governs how much time is allotted to establish all configured requests/connections - Explicitly define clover-jmeter-master service name with default namespace for clover-controller in clover-system namespace to reach - Add missing request_counts.html file Change-Id: I5e2d388db0b73ea6c28482c94c33cc2a01f1b52e Signed-off-by: earrage --- clover/tools/jmeter/jmeter-master/grpc/jmeter.proto | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'clover/tools/jmeter/jmeter-master/grpc/jmeter.proto') diff --git a/clover/tools/jmeter/jmeter-master/grpc/jmeter.proto b/clover/tools/jmeter/jmeter-master/grpc/jmeter.proto index 7213faa..f65ed6c 100644 --- a/clover/tools/jmeter/jmeter-master/grpc/jmeter.proto +++ b/clover/tools/jmeter/jmeter-master/grpc/jmeter.proto @@ -29,8 +29,10 @@ message ConfigJmeter { string url_names = 3; string url_protocols = 4; string url_methods = 5; - string loops = 6; - string ramp_time = 7; + string url_agents = 6; + string loops = 7; + string ramp_time = 8; + string duration = 9; } message JmeterReply { -- cgit 1.2.3-korg