File tree Expand file tree Collapse file tree 3 files changed +16
-12
lines changed
Expand file tree Collapse file tree 3 files changed +16
-12
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,12 @@ syntax = "proto3";
22
33package aquila ;
44
5- option ruby_package = "Tucana::Aquila " ;
5+ import "shared.runtime_usage.proto " ;
66
7- message RuntimeUsage {
8- int64 flow_id = 1 ;
9- string duration = 2 ; // in nanoseconds
10- }
7+ option ruby_package = "Tucana::Aquila" ;
118
129message RuntimeUsageRequest {
13- repeated RuntimeUsage runtime_usage = 1 ;
10+ repeated shared. RuntimeUsage runtime_usage = 1 ;
1411}
1512
1613message RuntimeUsageResponse {
Original file line number Diff line number Diff line change @@ -2,15 +2,12 @@ syntax = "proto3";
22
33package sagittarius ;
44
5- option ruby_package = "Tucana::Sagittarius " ;
5+ import "shared.runtime_usage.proto " ;
66
7- message RuntimeUsage {
8- int64 flow_id = 1 ;
9- string duration = 2 ; // in nanoseconds
10- }
7+ option ruby_package = "Tucana::Sagittarius" ;
118
129message RuntimeUsageRequest {
13- repeated RuntimeUsage runtime_usage = 1 ;
10+ repeated shared. RuntimeUsage runtime_usage = 1 ;
1411}
1512
1613message RuntimeUsageResponse {
Original file line number Diff line number Diff line change 1+ syntax = "proto3" ;
2+
3+ package shared ;
4+
5+ option ruby_package = "Tucana::Shared" ;
6+
7+ message RuntimeUsage {
8+ int64 flow_id = 1 ;
9+ string duration = 2 ; // in nanoseconds
10+ }
You can’t perform that action at this time.
0 commit comments