X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=proto%2Fcollectd.proto;h=83d21282963bdc5b3dc1fee356062e9fad0e5b0c;hb=3d082a905619c19ca5b7183bb95a30d4d9529c4d;hp=614d1bd00acf03106f50f732c8a244c69bca0055;hpb=e1fda36ff7e4b5f508b630b614b182e298d91fb7;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.