We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d470471 commit 47ea742Copy full SHA for 47ea742
1 file changed
core/protos/o2control.proto
@@ -83,12 +83,22 @@ message StatusUpdate {
83
// Framework
84
////////////////////////////////////////
85
message GetFrameworkInfoRequest {}
86
+message Version {
87
+ int32 major = 1;
88
+ int32 minor = 2;
89
+ int32 patch = 3;
90
+ string build = 4;
91
+ string productName = 5;
92
+ string versionStr = 6;
93
+}
94
message GetFrameworkInfoReply {
95
string frameworkId = 1;
96
int32 environmentsCount = 2;
97
int32 tasksCount = 3;
98
string state = 4;
99
int32 hostsCount = 5;
100
+ string instanceName = 6;
101
+ Version version = 7;
102
}
103
104
// Not implemented yet
0 commit comments