org.sentrysoftware.metricshub.engine.strategy.pre.PreSourcesStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metricshub-engine Show documentation
Show all versions of metricshub-engine Show documentation
MetricsHub Monitoring Engine
The newest version!
package org.sentrysoftware.metricshub.engine.strategy.pre;
/*-
* ╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲
* MetricsHub Engine
* ჻჻჻჻჻჻
* 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.util.ArrayList;
import java.util.Map;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.NonNull;
import lombok.extern.slf4j.Slf4j;
import org.sentrysoftware.metricshub.engine.client.ClientsExecutor;
import org.sentrysoftware.metricshub.engine.common.JobInfo;
import org.sentrysoftware.metricshub.engine.connector.model.Connector;
import org.sentrysoftware.metricshub.engine.connector.model.monitor.task.source.Source;
import org.sentrysoftware.metricshub.engine.extension.ExtensionManager;
import org.sentrysoftware.metricshub.engine.strategy.AbstractStrategy;
import org.sentrysoftware.metricshub.engine.strategy.source.OrderedSources;
import org.sentrysoftware.metricshub.engine.telemetry.TelemetryManager;
/**
* Implements pre-sources processing strategy extending the functionality of {@code AbstractStrategy}.
* This strategy is specifically designed to handle pre-sources using a specified connector. Pre-sources
* are defined by a connector to facilitate factorization and convenience, allowing these sources to be processed
* at the beginning of all jobs. This early processing ensures that any necessary setup or preliminary data manipulation
* is completed before the main job execution phases.
*/
@Slf4j
@EqualsAndHashCode(callSuper = true)
public class PreSourcesStrategy extends AbstractStrategy {
private Connector connector;
/**
* Initializes a new instance of {@code PreSourcesStrategy} with the necessary components for executing the strategy.
* This constructor sets up the strategy with a telemetry manager, strategy execution time, a clients executor,
* and a specific connector to process pre-sources.
*
* @param telemetryManager The telemetry manager responsible for managing telemetry data (monitors and metrics).
* @param strategyTime The execution time of the strategy, used for timing purpose.
* @param clientsExecutor An executor service for handling client operations within the pre-sources.
* @param connector The specific connector instance where the pre-sources are defined.
* @param extensionManager The extension manager where all the required extensions are handled.
*/
@Builder
public PreSourcesStrategy(
@NonNull final TelemetryManager telemetryManager,
@NonNull final Long strategyTime,
@NonNull final ClientsExecutor clientsExecutor,
@NonNull final Connector connector,
@NonNull final ExtensionManager extensionManager
) {
super(telemetryManager, strategyTime, clientsExecutor, extensionManager);
this.connector = connector;
}
/**
* Executes the strategy's core logic, processing pre-sources associated with the connector.
*/
@Override
public void run() {
// Retrieve the connector's identifier and hostname for logging and processing.
final String connectorId = connector.getCompiledFilename();
final String hostname = telemetryManager.getHostname();
// Fetch pre-sources from the connector.
final Map preSources = connector.getPre();
if (preSources == null || preSources.isEmpty()) {
log.debug(
"Hostname {} - Attempted to process pre-sources, but none are available for connector {}.",
hostname,
connectorId
);
return;
}
// Construct job information including job name, connector identifier, hostname and monitor type.
final JobInfo jobInfo = JobInfo
.builder()
.hostname(hostname)
.connectorId(connectorId)
.jobName("pre")
.monitorType("none")
.build();
// Build and order sources based on dependencies.
final OrderedSources orderedSources = OrderedSources
.builder()
.sources(preSources, new ArrayList<>(), connector.getPreSourceDep(), jobInfo)
.build();
// Process the ordered sources along with computes, based on the constructed job information.
processSourcesAndComputes(orderedSources.getSources(), jobInfo);
}
}