use of com.navercorp.pinpoint.profiler.context.provider.ServerMetaDataRegistryServiceProvider in project pinpoint by naver.
the class AgentInfoSenderTest method init.
@Before
public void init() {
agentInformation = createAgentInformation();
serverMetaDataRegistryService = new ServerMetaDataRegistryServiceProvider().get();
jvmInformation = new JvmInformationProvider().get();
agentInfoFactory = new AgentInfoFactory(agentInformation, serverMetaDataRegistryService, jvmInformation);
resultResponseMessageConverter = new ThriftMessageToResultConverter();
}
Aggregations