You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2018/11/20 02:47:32 UTC

[incubator-skywalking-data-collect-protocol] branch master updated: For supporting batch.

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking-data-collect-protocol.git


The following commit(s) were added to refs/heads/master by this push:
     new 6f96952  For supporting batch.
6f96952 is described below

commit 6f96952e1ddb4b01b8672787db1e15e132ca78f8
Author: Wu Sheng <wu...@foxmail.com>
AuthorDate: Tue Nov 20 10:47:25 2018 +0800

    For supporting batch.
---
 register/Register.proto | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/register/Register.proto b/register/Register.proto
index bb5d515..f5f9767 100644
--- a/register/Register.proto
+++ b/register/Register.proto
@@ -38,7 +38,7 @@ service Register {
     rpc doNetworkAddressRegister (NetAddresses) returns (NetAddressMapping) {
     }
 
-    rpc doServiceAndNetworkAddressMappingRegister (ServiceAndNetworkAddressMapping) returns(Commands) {
+    rpc doServiceAndNetworkAddressMappingRegister (ServiceAndNetworkAddressMappings) returns(Commands) {
     }
 }
 
@@ -111,6 +111,10 @@ message EndpointMappingElement {
     DetectPoint from = 3;
 }
 
+message ServiceAndNetworkAddressMappings {
+    repeated ServiceAndNetworkAddressMapping mappings = 1;
+}
+
 message ServiceAndNetworkAddressMapping {
     int32 serviceId = 1;
     int32 serviceInstanceId = 2;