aboutsummaryrefslogtreecommitdiff
path: root/libcmix-protobuf
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2016-12-01 21:42:51 +0100
committerDennis Brentjes <d.brentjes@gmail.com>2016-12-01 21:43:48 +0100
commit16c28db384adbe61034eb8a2267cd6a886ffd72f (patch)
tree426be5a41f5186ba17e909dda90afca5b7921c30 /libcmix-protobuf
parent463b8ec708db0d2d7405d434e28d0140c94b1d98 (diff)
downloadcmix-16c28db384adbe61034eb8a2267cd6a886ffd72f.tar.gz
cmix-16c28db384adbe61034eb8a2267cd6a886ffd72f.tar.bz2
cmix-16c28db384adbe61034eb8a2267cd6a886ffd72f.zip
Added the client side code for the statsd in the nodes.
Diffstat (limited to 'libcmix-protobuf')
-rw-r--r--libcmix-protobuf/cmix.proto9
1 files changed, 9 insertions, 0 deletions
diff --git a/libcmix-protobuf/cmix.proto b/libcmix-protobuf/cmix.proto
index 5cfdd92..2af20bc 100644
--- a/libcmix-protobuf/cmix.proto
+++ b/libcmix-protobuf/cmix.proto
@@ -65,6 +65,14 @@ message Payload {
bytes payload = 1;
}
+message Performance {
+ string wall_time = 1;
+ string user_time = 2;
+ string system_time = 3;
+ string column = 4;
+ string node = 5;
+}
+
message CMixMessage {
oneof contents {
Initialization initialization = 1;
@@ -81,5 +89,6 @@ message CMixMessage {
RealPre realpre = 12;
RealMix realmix = 13;
Payload payload = 14;
+ Performance performance = 15;
}
}