All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sentrysoftware.metricshub.agent.service.OtelCollectorProcessService Maven / Gradle / Ivy

package org.sentrysoftware.metricshub.agent.service;

/*-
 * ╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲
 * MetricsHub Agent
 * ჻჻჻჻჻჻
 * Copyright 2023 - 2024 Sentry Software
 * ჻჻჻჻჻჻
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see .
 * ╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱
 */

import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
import lombok.extern.slf4j.Slf4j;
import org.apache.logging.log4j.Level;
import org.apache.logging.log4j.ThreadContext;
import org.sentrysoftware.metricshub.agent.config.AgentConfig;
import org.sentrysoftware.metricshub.agent.config.otel.OtelCollectorConfig;
import org.sentrysoftware.metricshub.agent.config.otel.OtelCollectorOutput;
import org.sentrysoftware.metricshub.agent.process.config.ProcessOutput;
import org.sentrysoftware.metricshub.agent.process.io.LineReaderProcessor;
import org.sentrysoftware.metricshub.agent.process.io.ProcessorHelper;
import org.sentrysoftware.metricshub.agent.process.runtime.AbstractProcess;

/**
 * OpenTelemetry Collector process service
 */
@Slf4j
public class OtelCollectorProcessService extends AbstractProcess {

	private AgentConfig agentConfig;

	/**
	 * Creates a new instance of OtelCollectorProcessService.
	 *
	 * @param agentConfig The configuration for the MetricsHub Agent.
	 */
	public OtelCollectorProcessService(final AgentConfig agentConfig) {
		super(agentConfig.getOtelCollector().toProcessConfig());
		this.agentConfig = agentConfig;
	}

	@Override
	protected void onBeforeProcess() {
		// Not implemented
	}

	@Override
	protected void onBeforeProcessStart(ProcessBuilder processBuilder) {
		// Not implemented
	}

	@Override
	protected void onAfterProcessStart() {
		final ProcessOutput outputConfig = processConfig.getOutput();

		// Is there an output configuration defining output processors?
		if (outputConfig != null) {
			// Connect the reader to the output processor
			ProcessorHelper.connect(getReader(), outputConfig.getOutputProcessor(), LineReaderProcessor::new);

			// Connect the error reader to the error processor
			// If the error processor is not present then the error stream is redirected to output stream
			ProcessorHelper.connect(getError(), outputConfig.getErrorProcessor(), LineReaderProcessor::new);
		}
	}

	@Override
	protected void onBeforeProcessStop() {
		// Not implemented
	}

	@Override
	protected void stopInternal() {
		super.stopProcess();
	}

	@Override
	protected void onAfterProcessStop() {
		// Not implemented
	}

	/**
	 * Launch the OpenTelemetry Collector. If the configuration specifies that the collector must
	 * be disabled, the collector startup will not be initiated.
	 */
	public void launch() {
		final OtelCollectorConfig otelCollectorConfig = agentConfig.getOtelCollector();

		if (agentConfig.getOtelCollector().isDisabled()) {
			log.info("The MetricsHub Agent is configured to not start the OpenTelemetry Collector.");
			return;
		}

		// Ensure that the OpenTelemetry Collector Contrib executable is installed
		final List commandLine = processConfig.getCommandLine();
		if (commandLine.isEmpty() || !Files.exists(Paths.get(commandLine.get(0)))) {
			log.info(
				"The MetricsHub Agent will not start the OpenTelemetry Collector because the executable is not present."
			);
			return;
		}

		// The subprocess must be ran using a separate thread so that it creates a log context for himself only.
		// The process output will be redirected to a dedicated file, see how log4j2.xml is configured using the
		// thread context pattern.
		final ExecutorService singleThreadExecutor = Executors.newSingleThreadExecutor();

		// Run the execution
		singleThreadExecutor.submit(() -> {
			// Configure logger
			ThreadContext.put("logId", OtelCollectorConfig.EXECUTABLE_OUTPUT_ID);

			// By default otelcol debug is enabled
			String loggerLevel = Level.DEBUG.name();

			// User might want to disable logging for the process
			if (otelCollectorConfig.getOutput() != OtelCollectorOutput.LOG) {
				loggerLevel = Level.OFF.name();
			}

			ThreadContext.put("loggerLevel", loggerLevel);

			final String outputDirectory = agentConfig.getOutputDirectory();
			if (outputDirectory != null) {
				ThreadContext.put("outputDirectory", outputDirectory);
			}

			// Start the executable
			try {
				start();
			} catch (Exception e) {
				log.error("Could not start process using command line: {}.", processConfig.getCommandLine());
				log.debug("Error: ", e);
			}
		});

		try {
			singleThreadExecutor.awaitTermination(otelCollectorConfig.getStartupDelay(), TimeUnit.SECONDS);
		} catch (Exception e) { // NOSONAR
			log.error(
				"Startup process has been interrupted after {} seconds. Command line: {}.",
				otelCollectorConfig.getStartupDelay(),
				processConfig.getCommandLine()
			);
			log.debug("Error: ", e);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy