X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Friemann.proto;h=3e946a3a005269c4c885746f6c79b65021fd9b60;hb=0ba2f3a1a1db4ed7ce6f990b22b9605e19fc7ab9;hp=5aad7533207186e1a8622cfa92d75eba1ef861b8;hpb=4f8eb9713e492396242e17de4c73a31ce94486d6;p=collectd.git 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; +}