Skip to content
This repository has been archived by the owner on May 4, 2019. It is now read-only.

Updated broker_info.proto to provide more broker & destination info #29

Merged
merged 2 commits into from Jan 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 13 additions & 9 deletions proteus-broker-info-idl/src/main/proto/proteus/broker_info.proto
Expand Up @@ -21,15 +21,19 @@ message Destination {
}

message Broker {
string brokerId = 1;
string ipAddress = 2;
int32 port = 3;
string clusterAddress = 6;
int32 clusterPort = 4;
string adminAddress = 7;
int32 adminPort = 5;
string webSocketAddress = 8;
int32 webSocketPort = 9;
string brokerId = 1;
string ipAddress = 2;
int32 port = 3;
string clusterAddress = 6;
int32 clusterPort = 4;
string adminAddress = 7;
int32 adminPort = 5;
string webSocketAddress = 8;
int32 webSocketPort = 9;
string tcpAddress = 10;
int32 tcpPort = 11;
string webConsoleAddress = 12;
int32 webConsolePort = 13;
}

message Event {
Expand Down