From: Florian Forster Date: Sun, 7 Apr 2013 05:08:47 +0000 (+0200) Subject: src/riemann.proto: Import the protocol buffer for Riemann 0.2.0. X-Git-Tag: collectd-5.3.0~11 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=198f18fd8c9c0cd04c653f034277ec1669122f68 src/riemann.proto: Import the protocol buffer for Riemann 0.2.0. --- diff --git a/src/riemann.proto b/src/riemann.proto index 5aad7533..3e946a3a 100644 --- a/src/riemann.proto +++ b/src/riemann.proto @@ -20,6 +20,7 @@ message Event { optional string description = 5; repeated string tags = 7; optional float ttl = 8; + repeated Attribute attributes = 9; optional sint64 metric_sint64 = 13; optional double metric_d = 14; @@ -36,4 +37,9 @@ message Msg { repeated State states = 4; optional Query query = 5; repeated Event events = 6; -} \ No newline at end of file +} + +message Attribute { + required string key = 1; + optional string value = 2; +}