ApplicationRegisterService.proto 494 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
syntax = "proto3";

option java_multiple_files = true;
option java_package = "org.apache.skywalking.apm.network.proto";

import "KeyWithIntegerValue.proto";

//register service for ApplicationCode, this service is called when service starts.
service ApplicationRegisterService {
    rpc applicationCodeRegister (Application) returns (ApplicationMapping) {
    }
}

message Application {
    string applicationCode = 1;
}

message ApplicationMapping {
    KeyWithIntegerValue application = 1;
}