use of com.navercorp.pinpoint.profiler.context.thrift.config.DefaultThriftTransportConfig in project pinpoint by naver.
the class ThriftModule method loadThriftTransportConfig.
public ThriftTransportConfig loadThriftTransportConfig() {
DefaultThriftTransportConfig thriftTransportConfig = new DefaultThriftTransportConfig();
thriftTransportConfig.read(profilerConfig.getProperties());
logger.info("{}", thriftTransportConfig);
return thriftTransportConfig;
}
Aggregations