20 lines
432 B
Protocol Buffer
20 lines
432 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_multiple_files = true;
|
|
option java_package = "org.apache.skywalking.apm.network.proto";
|
|
|
|
import "KeyWithIntegerValue.proto";
|
|
|
|
service NetworkAddressRegisterService {
|
|
rpc batchRegister (NetworkAddresses) returns (NetworkAddressMappings) {
|
|
}
|
|
}
|
|
|
|
message NetworkAddresses {
|
|
repeated string addresses = 1;
|
|
}
|
|
|
|
message NetworkAddressMappings {
|
|
repeated KeyWithIntegerValue addressIds = 1;
|
|
}
|