|
35 | 35 | import com.navercorp.pinpoint.web.install.controller.AgentDownloadController;
|
36 | 36 | import com.navercorp.pinpoint.web.install.service.AgentDownLoadService;
|
37 | 37 | import com.navercorp.pinpoint.web.service.ActiveThreadDumpService;
|
38 |
| -import com.navercorp.pinpoint.web.service.ActiveThreadDumpServiceImpl; |
39 | 38 | import com.navercorp.pinpoint.web.service.AdminService;
|
40 | 39 | import com.navercorp.pinpoint.web.service.AgentEventService;
|
41 | 40 | import com.navercorp.pinpoint.web.service.AgentInfoService;
|
42 | 41 | import com.navercorp.pinpoint.web.service.AgentService;
|
43 | 42 | import com.navercorp.pinpoint.web.service.AlarmService;
|
44 |
| -import com.navercorp.pinpoint.web.service.EchoService; |
45 |
| -import com.navercorp.pinpoint.web.service.EchoServiceImpl; |
46 | 43 | import com.navercorp.pinpoint.web.service.FilteredMapService;
|
47 | 44 | import com.navercorp.pinpoint.web.service.HeatMapService;
|
48 | 45 | import com.navercorp.pinpoint.web.service.ScatterChartService;
|
|
52 | 49 | import com.navercorp.pinpoint.web.service.appmetric.ApplicationStatChartService;
|
53 | 50 | import com.navercorp.pinpoint.web.service.stat.AgentStatChartService;
|
54 | 51 | import com.navercorp.pinpoint.web.service.stat.AgentStatService;
|
55 |
| -import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; |
56 | 52 | import org.springframework.context.annotation.Bean;
|
57 | 53 | import org.springframework.context.annotation.Configuration;
|
58 | 54 |
|
@@ -87,18 +83,6 @@ public AgentStatController<AgentStatDataPoint> createAgentStatController(List<Ag
|
87 | 83 | return new AgentStatController<>(service, agentStatChartServiceList);
|
88 | 84 | }
|
89 | 85 |
|
90 |
| - @Bean |
91 |
| - @ConditionalOnMissingBean(ActiveThreadDumpService.class) |
92 |
| - public ActiveThreadDumpService activeThreadDumpService(AgentService agentService) { |
93 |
| - return new ActiveThreadDumpServiceImpl(agentService); |
94 |
| - } |
95 |
| - |
96 |
| - @Bean |
97 |
| - @ConditionalOnMissingBean(EchoService.class) |
98 |
| - public EchoService echoService(AgentService agentService) { |
99 |
| - return new EchoServiceImpl(agentService); |
100 |
| - } |
101 |
| - |
102 | 86 | @Bean
|
103 | 87 | public AgentCommandController createAgentCommandController(
|
104 | 88 | ConfigProperties webProperties,
|
|
0 commit comments