summaryrefslogtreecommitdiffstats
path: root/clover/collector/grpc/collector.proto
blob: fc8b63629974adce27ab8f626d8dfbc85f1d2fc7 (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
44
45
// 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 collector;

// The controller service definition.
service Controller {

  rpc StopCollector (ConfigCollector) returns (CollectorReply) {}
  rpc StartCollector (ConfigCollector) returns (CollectorReply) {}
  rpc InitVisibility (ConfigCassandra) returns (CollectorReply) {}
  rpc TruncateVisibility (Schemas) returns (CollectorReply) {}
}

message ConfigCassandra {
  string cassandra_hosts = 1;
  int32 cassandra_port = 2;
}

message ConfigCollector {
  string t_port = 1;
  string t_host = 2;
  string m_port = 3;
  string m_host = 4;
  string c_port = 5;
  string c_hosts = 6;
  string sinterval = 7;
}

message Schemas {
  string schemas = 1;
  string cassandra_hosts = 2;
  int32 cassandra_port = 3;

}

message CollectorReply {
  string message = 1;
}