Search in sources :

Example 1 with JfrService

use of com.newrelic.agent.jfr.JfrService in project newrelic-java-agent by newrelic.

the class ServiceManagerImpl method doStart.

@Override
protected synchronized void doStart() throws Exception {
    // The ConfigService has been created, but not started. This means it
    // is safe to consult the config, but it will be the local config only.
    coreService.start();
    threadService = new ThreadService();
    circuitBreakerService = new CircuitBreakerService();
    classTransformerService = new ClassTransformerServiceImpl(coreService.getInstrumentation());
    AgentConfig config = configService.getDefaultAgentConfig();
    JmxConfig jmxConfig = config.getJmxConfig();
    jmxService = new JmxService(jmxConfig);
    Logger jarCollectorLogger = Agent.LOG.getChildLogger("com.newrelic.jar_collector");
    boolean jarCollectorEnabled = configService.getDefaultAgentConfig().getJarCollectorConfig().isEnabled();
    AtomicBoolean shouldSendAllJars = new AtomicBoolean(true);
    TrackedAddSet<JarData> analyzedJars = new TrackedAddSet<>();
    Function<URL, JarData> processor = new JarCollectorServiceProcessor(jarCollectorLogger, configService.getDefaultAgentConfig());
    JarAnalystFactory jarAnalystFactory = new JarAnalystFactory(processor, analyzedJars, jarCollectorLogger);
    ExecutorService executorService = Executors.newSingleThreadExecutor(new DefaultThreadFactory("New Relic Jar Analysis Thread", true));
    JarCollectorInputs jarCollectorInputs = JarCollectorInputs.build(jarCollectorEnabled, jarAnalystFactory, executorService, jarCollectorLogger);
    jarCollectorService = new JarCollectorServiceImpl(jarCollectorLogger, jarCollectorEnabled, shouldSendAllJars, analyzedJars, jarCollectorInputs.getClassNoticingFactory());
    extensionService = new ExtensionService(configService, jarCollectorInputs.getExtensionAnalysisProducer());
    String defaultAppName = configService.getDefaultAgentConfig().getApplicationName();
    JarCollectorConnectionListener jarCollectorConnectionListener = new JarCollectorConnectionListener(defaultAppName, shouldSendAllJars);
    JarCollectorHarvestListener jarCollectorHarvestListener = new JarCollectorHarvestListener(defaultAppName, jarCollectorService);
    sourceLanguageService = new SourceLanguageService();
    expirationService = new ExpirationService();
    tracerService = new TracerService();
    // this allows async parts of transaction to be registered
    // it must be created before the first class transformation occurs
    asyncTxService = new AsyncTransactionService();
    // this is called in a transaction finish - it needs to be created before the first class transformation
    environmentService = new EnvironmentServiceImpl();
    /*
         * Before this point the ClassTransformer is not initialized, so be careful not to load classes that should be
         * instrumented.
         */
    cacheService = new CacheService();
    extensionService.start();
    classTransformerService.start();
    boolean realAgent = coreService.getInstrumentation() != null;
    statsService = new StatsServiceImpl();
    replayStartupStatsWork();
    utilizationService = new UtilizationService();
    // Start as early as possible.
    if (realAgent) {
        utilizationService.start();
    }
    rpmConnectionService = new RPMConnectionServiceImpl();
    transactionService = new TransactionService();
    InfiniteTracing infiniteTracing = buildInfiniteTracing(configService);
    InfiniteTracingEnabledCheck infiniteTracingEnabledCheck = new InfiniteTracingEnabledCheck(configService);
    SpanEventCreationDecider spanEventCreationDecider = new SpanEventCreationDecider(configService);
    AgentConnectionEstablishedListener agentConnectionEstablishedListener = new UpdateInfiniteTracingAfterConnect(infiniteTracingEnabledCheck, infiniteTracing);
    JfrConfig jfrConfig = config.getJfrConfig();
    jfrService = new JfrService(jfrConfig, configService.getDefaultAgentConfig());
    AgentConnectionEstablishedListener jfrServiceConnectionListener = new JfrServiceConnectionListener(jfrService);
    distributedTraceService = new DistributedTraceServiceImpl();
    TransactionDataToDistributedTraceIntrinsics transactionDataToDistributedTraceIntrinsics = new TransactionDataToDistributedTraceIntrinsics(distributedTraceService);
    rpmServiceManager = new RPMServiceManagerImpl(agentConnectionEstablishedListener, jarCollectorConnectionListener, jfrServiceConnectionListener);
    normalizationService = new NormalizationServiceImpl();
    harvestService = new HarvestServiceImpl();
    gcService = realAgent ? new GCService() : new NoopService("GC Service");
    transactionTraceService = new TransactionTraceService();
    transactionEventsService = new TransactionEventsService(transactionDataToDistributedTraceIntrinsics);
    profilerService = new ProfilerService();
    commandParser = new CommandParser();
    cpuSamplerService = realAgent ? new CPUSamplerService() : new NoopService("CPU Sampler");
    deadlockDetectorService = new DeadlockDetectorService();
    samplerService = realAgent ? new SamplerServiceImpl() : new NoopSamplerService();
    sqlTraceService = new SqlTraceServiceImpl();
    databaseService = new DatabaseService();
    browserService = new BrowserServiceImpl();
    remoteInstrumentationService = new RemoteInstrumentationServiceImpl();
    attsService = new AttributesService();
    insightsService = new InsightsServiceImpl();
    logSenderService = new LogSenderServiceImpl();
    spanEventsService = SpanEventsServiceFactory.builder().configService(configService).rpmServiceManager(rpmServiceManager).transactionService(transactionService).infiniteTracingConsumer(infiniteTracing).spanEventCreationDecider(spanEventCreationDecider).environmentService(environmentService).transactionDataToDistributedTraceIntrinsics(transactionDataToDistributedTraceIntrinsics).build();
    // Register harvest listeners that started before harvest service was created.
    harvestService.addHarvestListener(extensionService);
    harvestService.addHarvestListener(jarCollectorHarvestListener);
    asyncTxService.start();
    threadService.start();
    statsService.start();
    environmentService.start();
    rpmConnectionService.start();
    tracerService.start();
    jarCollectorService.start();
    sourceLanguageService.start();
    harvestService.start();
    gcService.start();
    transactionService.start();
    transactionTraceService.start();
    transactionEventsService.start();
    profilerService.start();
    commandParser.start();
    jmxService.start();
    cpuSamplerService.start();
    deadlockDetectorService.start();
    samplerService.start();
    sqlTraceService.start();
    browserService.start();
    cacheService.start();
    normalizationService.start();
    databaseService.start();
    configService.start();
    remoteInstrumentationService.start();
    attsService.start();
    insightsService.start();
    logSenderService.start();
    circuitBreakerService.start();
    distributedTraceService.start();
    spanEventsService.start();
    startServices();
    // start last so other services can add connection listeners
    rpmServiceManager.start();
    // used for debugging purposes to quickly determine slow service startups
    ServiceTiming.setEndTime();
    ServiceTiming.logServiceTimings(getLogger());
}
Also used : ClassTransformerServiceImpl(com.newrelic.agent.instrumentation.ClassTransformerServiceImpl) TrackedAddSet(com.newrelic.agent.service.module.TrackedAddSet) RPMServiceManagerImpl(com.newrelic.agent.RPMServiceManagerImpl) TransactionDataToDistributedTraceIntrinsics(com.newrelic.agent.service.analytics.TransactionDataToDistributedTraceIntrinsics) AgentConnectionEstablishedListener(com.newrelic.agent.AgentConnectionEstablishedListener) CommandParser(com.newrelic.agent.commands.CommandParser) DefaultThreadFactory(com.newrelic.agent.util.DefaultThreadFactory) InsightsServiceImpl(com.newrelic.agent.service.analytics.InsightsServiceImpl) RPMConnectionServiceImpl(com.newrelic.agent.rpm.RPMConnectionServiceImpl) JarCollectorServiceImpl(com.newrelic.agent.service.module.JarCollectorServiceImpl) StatsServiceImpl(com.newrelic.agent.stats.StatsServiceImpl) ExpirationService(com.newrelic.agent.ExpirationService) ProfilerService(com.newrelic.agent.profile.ProfilerService) CircuitBreakerService(com.newrelic.agent.circuitbreaker.CircuitBreakerService) JarAnalystFactory(com.newrelic.agent.service.module.JarAnalystFactory) RemoteInstrumentationServiceImpl(com.newrelic.agent.reinstrument.RemoteInstrumentationServiceImpl) SqlTraceServiceImpl(com.newrelic.agent.sql.SqlTraceServiceImpl) TransactionService(com.newrelic.agent.TransactionService) AsyncTransactionService(com.newrelic.agent.service.async.AsyncTransactionService) HarvestServiceImpl(com.newrelic.agent.HarvestServiceImpl) AttributesService(com.newrelic.agent.attributes.AttributesService) InfiniteTracing(com.newrelic.InfiniteTracing) DeadlockDetectorService(com.newrelic.agent.deadlock.DeadlockDetectorService) TransactionTraceService(com.newrelic.agent.trace.TransactionTraceService) BrowserServiceImpl(com.newrelic.agent.browser.BrowserServiceImpl) JmxConfig(com.newrelic.agent.config.JmxConfig) AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) EnvironmentServiceImpl(com.newrelic.agent.environment.EnvironmentServiceImpl) JarCollectorInputs(com.newrelic.agent.service.module.JarCollectorInputs) InfiniteTracingEnabledCheck(com.newrelic.agent.service.analytics.InfiniteTracingEnabledCheck) TransactionEventsService(com.newrelic.agent.service.analytics.TransactionEventsService) JarData(com.newrelic.agent.service.module.JarData) Logger(com.newrelic.api.agent.Logger) URL(java.net.URL) AgentConfig(com.newrelic.agent.config.AgentConfig) SpanEventCreationDecider(com.newrelic.agent.service.analytics.SpanEventCreationDecider) JfrConfig(com.newrelic.agent.config.JfrConfig) LogSenderServiceImpl(com.newrelic.agent.service.logging.LogSenderServiceImpl) JarCollectorServiceProcessor(com.newrelic.agent.service.module.JarCollectorServiceProcessor) CPUSamplerService(com.newrelic.agent.samplers.CPUSamplerService) JarCollectorConnectionListener(com.newrelic.agent.service.module.JarCollectorConnectionListener) GCService(com.newrelic.agent.GCService) CacheService(com.newrelic.agent.cache.CacheService) NormalizationServiceImpl(com.newrelic.agent.normalization.NormalizationServiceImpl) ExtensionService(com.newrelic.agent.extension.ExtensionService) TracerService(com.newrelic.agent.TracerService) UtilizationService(com.newrelic.agent.utilization.UtilizationService) DistributedTraceServiceImpl(com.newrelic.agent.tracing.DistributedTraceServiceImpl) JmxService(com.newrelic.agent.jmx.JmxService) AsyncTransactionService(com.newrelic.agent.service.async.AsyncTransactionService) DatabaseService(com.newrelic.agent.database.DatabaseService) JarCollectorHarvestListener(com.newrelic.agent.service.module.JarCollectorHarvestListener) ThreadService(com.newrelic.agent.ThreadService) ExecutorService(java.util.concurrent.ExecutorService) SamplerServiceImpl(com.newrelic.agent.samplers.SamplerServiceImpl) NoopSamplerService(com.newrelic.agent.samplers.NoopSamplerService) SourceLanguageService(com.newrelic.agent.language.SourceLanguageService) JfrService(com.newrelic.agent.jfr.JfrService)

Example 2 with JfrService

use of com.newrelic.agent.jfr.JfrService in project newrelic-java-agent by newrelic.

the class ServiceManagerImpl method getServicesConfiguration.

@Override
public Map<String, Map<String, Object>> getServicesConfiguration() {
    Map<String, Map<String, Object>> config = new HashMap<>();
    Map<String, Object> serviceInfo = new HashMap<>();
    serviceInfo.put("enabled", transactionService.isEnabled());
    config.put("TransactionService", serviceInfo);
    serviceInfo = new HashMap<>();
    config.put("TransactionTraceService", serviceInfo);
    serviceInfo.put("enabled", transactionTraceService.isEnabled());
    serviceInfo = new HashMap<>();
    config.put("TransactionEventsService", serviceInfo);
    serviceInfo.put("enabled", transactionEventsService.isEnabled());
    serviceInfo = new HashMap<>();
    serviceInfo.put("enabled", profilerService.isEnabled());
    config.put("ProfilerService", serviceInfo);
    serviceInfo = new HashMap<>();
    serviceInfo.put("enabled", tracerService.isEnabled());
    config.put("TracerService", serviceInfo);
    serviceInfo = new HashMap<>();
    serviceInfo.put("enabled", commandParser.isEnabled());
    config.put("CommandParser", serviceInfo);
    serviceInfo = new HashMap<>();
    serviceInfo.put("enabled", jfrService.isEnabled());
    config.put("JfrService", serviceInfo);
    serviceInfo = new HashMap<>();
    serviceInfo.put("enabled", jmxService.isEnabled());
    config.put("JmxService", serviceInfo);
    serviceInfo = new HashMap<>();
    serviceInfo.put("enabled", threadService.isEnabled());
    config.put("ThreadService", serviceInfo);
    serviceInfo = new HashMap<>();
    serviceInfo.put("enabled", deadlockDetectorService.isEnabled());
    config.put("DeadlockService", serviceInfo);
    for (Service service : services.values()) {
        serviceInfo = new HashMap<>();
        serviceInfo.put("enabled", service.isEnabled());
        config.put(service.getClass().getSimpleName(), serviceInfo);
    }
    return config;
}
Also used : ConcurrentHashMap(java.util.concurrent.ConcurrentHashMap) HashMap(java.util.HashMap) JarCollectorService(com.newrelic.agent.service.module.JarCollectorService) SamplerService(com.newrelic.agent.samplers.SamplerService) SpanEventsService(com.newrelic.agent.service.analytics.SpanEventsService) GCService(com.newrelic.agent.GCService) EnvironmentService(com.newrelic.agent.environment.EnvironmentService) LogSenderService(com.newrelic.agent.service.logging.LogSenderService) TracerService(com.newrelic.agent.TracerService) UtilizationService(com.newrelic.agent.utilization.UtilizationService) RPMConnectionService(com.newrelic.agent.rpm.RPMConnectionService) DeadlockDetectorService(com.newrelic.agent.deadlock.DeadlockDetectorService) ExtensionService(com.newrelic.agent.extension.ExtensionService) TransactionService(com.newrelic.agent.TransactionService) CacheService(com.newrelic.agent.cache.CacheService) SourceLanguageService(com.newrelic.agent.language.SourceLanguageService) CoreService(com.newrelic.agent.core.CoreService) TransactionEventsService(com.newrelic.agent.service.analytics.TransactionEventsService) SqlTraceService(com.newrelic.agent.sql.SqlTraceService) CircuitBreakerService(com.newrelic.agent.circuitbreaker.CircuitBreakerService) InsightsService(com.newrelic.agent.service.analytics.InsightsService) JmxService(com.newrelic.agent.jmx.JmxService) AttributesService(com.newrelic.agent.attributes.AttributesService) ThreadService(com.newrelic.agent.ThreadService) AsyncTransactionService(com.newrelic.agent.service.async.AsyncTransactionService) ExpirationService(com.newrelic.agent.ExpirationService) CPUSamplerService(com.newrelic.agent.samplers.CPUSamplerService) ExecutorService(java.util.concurrent.ExecutorService) StatsService(com.newrelic.agent.stats.StatsService) DistributedTraceService(com.newrelic.agent.tracing.DistributedTraceService) ProfilerService(com.newrelic.agent.profile.ProfilerService) TransactionTraceService(com.newrelic.agent.trace.TransactionTraceService) NormalizationService(com.newrelic.agent.normalization.NormalizationService) BrowserService(com.newrelic.agent.browser.BrowserService) HarvestService(com.newrelic.agent.HarvestService) DatabaseService(com.newrelic.agent.database.DatabaseService) RemoteInstrumentationService(com.newrelic.agent.reinstrument.RemoteInstrumentationService) ConfigService(com.newrelic.agent.config.ConfigService) ClassTransformerService(com.newrelic.agent.instrumentation.ClassTransformerService) JfrService(com.newrelic.agent.jfr.JfrService) NoopSamplerService(com.newrelic.agent.samplers.NoopSamplerService) Map(java.util.Map) ConcurrentHashMap(java.util.concurrent.ConcurrentHashMap) HashMap(java.util.HashMap) ConcurrentMap(java.util.concurrent.ConcurrentMap)

Aggregations

ExpirationService (com.newrelic.agent.ExpirationService)2 GCService (com.newrelic.agent.GCService)2 ThreadService (com.newrelic.agent.ThreadService)2 TracerService (com.newrelic.agent.TracerService)2 TransactionService (com.newrelic.agent.TransactionService)2 AttributesService (com.newrelic.agent.attributes.AttributesService)2 CacheService (com.newrelic.agent.cache.CacheService)2 CircuitBreakerService (com.newrelic.agent.circuitbreaker.CircuitBreakerService)2 DatabaseService (com.newrelic.agent.database.DatabaseService)2 DeadlockDetectorService (com.newrelic.agent.deadlock.DeadlockDetectorService)2 ExtensionService (com.newrelic.agent.extension.ExtensionService)2 JfrService (com.newrelic.agent.jfr.JfrService)2 JmxService (com.newrelic.agent.jmx.JmxService)2 SourceLanguageService (com.newrelic.agent.language.SourceLanguageService)2 ProfilerService (com.newrelic.agent.profile.ProfilerService)2 CPUSamplerService (com.newrelic.agent.samplers.CPUSamplerService)2 NoopSamplerService (com.newrelic.agent.samplers.NoopSamplerService)2 TransactionEventsService (com.newrelic.agent.service.analytics.TransactionEventsService)2 AsyncTransactionService (com.newrelic.agent.service.async.AsyncTransactionService)2 InfiniteTracing (com.newrelic.InfiniteTracing)1