Skip to content

Commit

Permalink
[#noissue] Disable realtime in default
Browse files Browse the repository at this point in the history
  • Loading branch information
smilu97 committed Mar 15, 2024
1 parent 0085911 commit 87913a1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion collector/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ pinpoint:
ssl:
enabled: false
realtime:
enabled: true
enabled: false
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
import com.navercorp.pinpoint.realtime.dto.ATDDemand;
import com.navercorp.pinpoint.realtime.dto.ATDSupply;
import com.navercorp.pinpoint.realtime.dto.Echo;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
Expand All @@ -52,6 +54,12 @@
})
public class RealtimeCollectorServerConfig {

private static final Logger logger = LogManager.getLogger(RealtimeCollectorServerConfig.class);

public RealtimeCollectorServerConfig() {
logger.info("RealtimeCollectorServerConfig initialized");
}

@Bean
public ChannelServiceServer legacyATCServer(
ChannelProviderRepository channelProviderRepository,
Expand Down
2 changes: 1 addition & 1 deletion web/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pinpoint:
login:
webhook: true
realtime:
enabled: true
enabled: false

hbase:
client:
Expand Down

0 comments on commit 87913a1

Please sign in to comment.