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