X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=proto%2Fcollectd.proto;h=83d21282963bdc5b3dc1fee356062e9fad0e5b0c;hb=1dfd4ca227102355c8b89c83d68a67dbd9276e24;hp=614d1bd00acf03106f50f732c8a244c69bca0055;hpb=4d6f6e256e27ed45a41bcc199f623e23aca401c9;p=collectd.git diff --git a/proto/collectd.proto b/proto/collectd.proto index 614d1bd0..83d21282 100644 --- a/proto/collectd.proto +++ b/proto/collectd.proto @@ -33,12 +33,11 @@ service Collectd { // PutValues reads the value lists from the PutValuesRequest stream. // The gRPC server embedded into collectd will inject them into the system // just like the network plugin. - rpc PutValues(stream PutValuesRequest) - returns (PutValuesResponse); + rpc PutValues(stream PutValuesRequest) returns(PutValuesResponse); // QueryValues returns a stream of matching value lists from collectd's // internal cache. - rpc QueryValues(QueryValuesRequest) returns (stream QueryValuesResponse); + rpc QueryValues(QueryValuesRequest) returns(stream QueryValuesResponse); } // The arguments to PutValues.