src/riemann.proto: Import the protocol buffer for Riemann 0.2.0.
authorFlorian Forster <octo@collectd.org>
Sun, 7 Apr 2013 05:08:47 +0000 (07:08 +0200)
committerFlorian Forster <octo@collectd.org>
Sun, 7 Apr 2013 05:08:47 +0000 (07:08 +0200)
src/riemann.proto

index 5aad753..3e946a3 100644 (file)
@@ -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;
+}