52 lines
1.5 KiB
C#
52 lines
1.5 KiB
C#
using Core;
|
|
using KubernetesWorkflow;
|
|
using Logging;
|
|
|
|
namespace MetricsPlugin
|
|
{
|
|
public class MetricsPlugin : IProjectPlugin, IHasLogPrefix, IHasMetadata
|
|
{
|
|
private readonly IPluginTools tools;
|
|
private readonly PrometheusStarter starter;
|
|
|
|
public MetricsPlugin(IPluginTools tools)
|
|
{
|
|
this.tools = tools;
|
|
starter = new PrometheusStarter(tools);
|
|
}
|
|
|
|
public string LogPrefix => "(Metrics) ";
|
|
|
|
public void Announce()
|
|
{
|
|
tools.GetLog().Log($"Prometheus plugin loaded with '{starter.GetPrometheusId()}'.");
|
|
}
|
|
|
|
public void AddMetadata(IAddMetadata metadata)
|
|
{
|
|
metadata.Add("prometheusid", starter.GetPrometheusId());
|
|
}
|
|
|
|
public void Decommission()
|
|
{
|
|
}
|
|
|
|
public RunningContainer DeployMetricsCollector(IMetricsScrapeTarget[] scrapeTargets)
|
|
{
|
|
return starter.CollectMetricsFor(scrapeTargets);
|
|
}
|
|
|
|
public IMetricsAccess WrapMetricsCollectorDeployment(RunningContainer runningContainer, IMetricsScrapeTarget target)
|
|
{
|
|
runningContainer = SerializeGate.Gate(runningContainer);
|
|
return starter.CreateAccessForTarget(runningContainer, target);
|
|
}
|
|
|
|
public LogFile? DownloadAllMetrics(IMetricsAccess metricsAccess, string targetName)
|
|
{
|
|
var downloader = new MetricsDownloader(tools.GetLog());
|
|
return downloader.DownloadAllMetrics(targetName, metricsAccess);
|
|
}
|
|
}
|
|
}
|