summaryrefslogtreecommitdiffstats
path: root/clover/tools/jmeter/jmeter-master/grpc/jmeter.proto
blob: 7213faa383af3cba566b29c6c0ce2e7a8415c8e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (c) Authors of Clover
//
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Apache License, Version 2.0
// which accompanies this distribution, and is available at
// http://www.apache.org/licenses/LICENSE-2.0

syntax = "proto3";

package jmeter;

// The controller service definition.
service Controller {

  rpc GenTest (ConfigJmeter) returns (JmeterReply) {}
  rpc StartTest (TestParams) returns (JmeterReply) {}
  rpc GetResults (JResults) returns (JmeterReply) {}
}

message TestParams {
  string num_slaves = 1;
  string test_plan = 2;
  string slave_ips = 3;
}

message ConfigJmeter {
  string url_list = 1;
  string num_threads = 2;
  string url_names = 3;
  string url_protocols = 4;
  string url_methods = 5;
  string loops = 6;
  string ramp_time = 7;
}

message JmeterReply {
  string message = 1;
}

message JResults {
  string r_format = 1;
  string r_file = 2;
}