Skip to content

Commit

Permalink
[#8877] Fix ActiveTrace not working
Browse files Browse the repository at this point in the history
  • Loading branch information
emeroad committed May 23, 2022
1 parent 7589386 commit 642cc3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private <T extends AgentStatDataPoint> AgentStatDao<T> newAgentStatDao(AgentStat

@Bean
public AgentStatDao<ActiveTraceBo> getActiveTraceDao(AgentStatSerializer<ActiveTraceBo> serializer) {
return newAgentStatDao(AgentStatType.TRANSACTION, AgentStatBo::getActiveTraceBos, serializer);
return newAgentStatDao(AgentStatType.ACTIVE_TRACE, AgentStatBo::getActiveTraceBos, serializer);
}

@Bean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
public class AgentStatServiceConfiguration {

@Bean
public AgentStatChartService<ActiveTraceChart> getAgentStatChartService(SampledAgentStatDao<SampledActiveTrace> statDao) {
public AgentStatChartService<ActiveTraceChart> getActiveTraceChartService(SampledAgentStatDao<SampledActiveTrace> statDao) {
return new DefaultAgentStatChartService<>(statDao, ActiveTraceChart::new);
}

Expand Down

0 comments on commit 642cc3f

Please sign in to comment.