X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=proto%2Ftypes.proto;h=952c5418d1f5143bc4513545ba5cfa1dc9c32aec;hb=ceb89aec8be5d0632275f65cdaccf05bcb26fc56;hp=ae8e6e9ac99860acbd674d12a70a9ef7f5a90d6b;hpb=57cea0b217d7ee6e8d8f146d6c018421559503c3;p=collectd.git diff --git a/proto/types.proto b/proto/types.proto index ae8e6e9a..952c5418 100644 --- a/proto/types.proto +++ b/proto/types.proto @@ -31,29 +31,29 @@ import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; message Identifier { - string host = 1; - string plugin = 2; - string plugin_instance = 3; - string type = 4; - string type_instance = 5; + string host = 1; + string plugin = 2; + string plugin_instance = 3; + string type = 4; + string type_instance = 5; } message Value { - oneof value { - uint64 counter = 1; - double gauge = 2; - int64 derive = 3; - uint64 absolute = 4; - }; + oneof value { + uint64 counter = 1; + double gauge = 2; + int64 derive = 3; + uint64 absolute = 4; + }; } message ValueList { - repeated Value values = 1; + repeated Value values = 1; - google.protobuf.Timestamp time = 2; - google.protobuf.Duration interval = 3; + google.protobuf.Timestamp time = 2; + google.protobuf.Duration interval = 3; - Identifier identifier = 4; + Identifier identifier = 4; - repeated string ds_names = 5; + repeated string ds_names = 5; }