summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 47b7950)
raw | patch | inline | side by side (parent: 47b7950)
author | Florian Forster <octo@collectd.org> | |
Sun, 7 Apr 2013 05:08:47 +0000 (07:08 +0200) | ||
committer | Florian Forster <octo@collectd.org> | |
Sun, 7 Apr 2013 05:08:47 +0000 (07:08 +0200) |
src/riemann.proto | patch | blob | history |
diff --git a/src/riemann.proto b/src/riemann.proto
index 5aad7533207186e1a8622cfa92d75eba1ef861b8..3e946a3a005269c4c885746f6c79b65021fd9b60 100644 (file)
--- a/src/riemann.proto
+++ b/src/riemann.proto
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;
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;
+}