projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
47b7950
)
src/riemann.proto: Import the protocol buffer for Riemann 0.2.0.
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
5aad753
..
3e946a3
100644
(file)
--- 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;
+}