using Core; using KubernetesWorkflow; using KubernetesWorkflow.Types; using Logging; using System.Text; namespace MetricsPlugin { public class PrometheusStarter { private readonly PrometheusContainerRecipe recipe = new PrometheusContainerRecipe(); private readonly IPluginTools tools; public PrometheusStarter(IPluginTools tools) { this.tools = tools; } public RunningContainers CollectMetricsFor(IMetricsScrapeTarget[] targets) { Log($"Starting metrics server for {targets.Length} targets..."); var startupConfig = new StartupConfig(); startupConfig.Add(new PrometheusStartupConfig(GeneratePrometheusConfig(targets))); var workflow = tools.CreateWorkflow(); var runningContainers = workflow.Start(1, recipe, startupConfig); if (runningContainers.Containers.Length != 1) throw new InvalidOperationException("Expected only 1 Prometheus container to be created."); Log("Metrics server started."); return runningContainers; } public MetricsAccess CreateAccessForTarget(RunningContainers metricsContainer, IMetricsScrapeTarget target) { var metricsQuery = new MetricsQuery(tools, metricsContainer.Containers.Single()); return new MetricsAccess(metricsQuery, target); } public string GetPrometheusId() { return recipe.Image; } private void Log(string msg) { tools.GetLog().Log(msg); } private string GeneratePrometheusConfig(IMetricsScrapeTarget[] targets) { var config = ""; config += "global:\n"; config += " scrape_interval: 10s\n"; config += " scrape_timeout: 10s\n"; config += "\n"; config += "scrape_configs:\n"; config += " - job_name: services\n"; config += " metrics_path: /metrics\n"; config += " static_configs:\n"; config += " - targets:\n"; foreach (var target in targets) { config += $" - '{FormatTarget(target)}'\n"; } var bytes = Encoding.ASCII.GetBytes(config); return Convert.ToBase64String(bytes); } private string FormatTarget(IMetricsScrapeTarget target) { return ScrapeTargetHelper.FormatTarget(tools.GetLog(), target); } } public static class ScrapeTargetHelper { public static string FormatTarget(ILog log, IMetricsScrapeTarget target) { var a = target.Container.GetAddress(log, target.MetricsPortTag); var host = a.Host.Replace("http://", "").Replace("https://", ""); return $"{host}:{a.Port}"; } } }