Skip to content

Commit

Permalink
[pinpoint-apm#8877] Fix ActiveRequest not working
Browse files Browse the repository at this point in the history
  • Loading branch information
emeroad committed May 23, 2022
1 parent a676b94 commit 01bd60a
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 01bd60a

Please sign in to comment.