grpc plugin: Move all functions to a single service again.
[collectd.git] / proto / types.proto
index 4a852e4..ae8e6e9 100644 (file)
@@ -25,6 +25,7 @@
 syntax = "proto3";
 
 package collectd.types;
+option go_package = "collectd.org/rpc/proto/types";
 
 import "google/protobuf/duration.proto";
 import "google/protobuf/timestamp.proto";
@@ -47,10 +48,12 @@ message Value {
 }
 
 message ValueList {
-       repeated Value value = 1;
+       repeated Value values = 1;
 
        google.protobuf.Timestamp time = 2;
        google.protobuf.Duration interval = 3;
 
        Identifier identifier = 4;
+
+       repeated string ds_names = 5;
 }