Skip to content

Commit

Permalink
Add grpc service to set monitor provided group is, aka optimized ana …
Browse files Browse the repository at this point in the history
…group, add proto file

Signed-off-by: Alexander Indenbaum <[email protected]>
  • Loading branch information
Alexander Indenbaum committed Dec 4, 2023
1 parent 67397b7 commit 2a2925a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions control/proto/monitor.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
//
// Copyright (c) 2023 International Business Machines
// All rights reserved.
//
// SPDX-License-Identifier: MIT
//

syntax = "proto3";

service Monitor {
// Called by the monitor client to set the gateway's group id
rpc group_id(group_id_req) returns (google.protobuf.Empty) {}
}

// Request messages
message group_id_req {
uint32 id = 1;
}

0 comments on commit 2a2925a

Please sign in to comment.