cs-codex-dist-tests/CodexDistTestCore/MetricsAggregator.cs

79 lines
2.5 KiB
C#
Raw Normal View History

2023-03-27 12:49:34 +00:00
using NUnit.Framework;
using System.Text;
2023-03-27 12:49:34 +00:00
namespace CodexDistTestCore
{
public class MetricsAggregator
{
private readonly NumberSource prometheusNumberSource = new NumberSource(0);
2023-03-27 12:49:34 +00:00
private readonly TestLog log;
private readonly K8sManager k8sManager;
private readonly Dictionary<MetricsQuery, OnlineCodexNode[]> activePrometheuses = new Dictionary<MetricsQuery, OnlineCodexNode[]>();
2023-03-27 12:49:34 +00:00
public MetricsAggregator(TestLog log, K8sManager k8sManager)
{
this.log = log;
this.k8sManager = k8sManager;
}
2023-03-31 08:00:44 +00:00
public void BeginCollectingMetricsFor(OnlineCodexNode[] nodes)
2023-03-27 12:49:34 +00:00
{
log.Log($"Starting metrics collecting for {nodes.Length} nodes...");
2023-03-27 12:49:34 +00:00
var config = GeneratePrometheusConfig(nodes);
var prometheus = k8sManager.BringOnlinePrometheus(config, prometheusNumberSource.GetNextNumber());
var query = new MetricsQuery(prometheus);
activePrometheuses.Add(query, nodes);
2023-03-27 12:49:34 +00:00
log.Log("Metrics service started.");
2023-03-31 08:00:44 +00:00
foreach(var node in nodes)
{
node.Metrics = new MetricsAccess(query, node);
}
2023-03-27 12:49:34 +00:00
}
public void DownloadAllMetrics()
{
var download = new MetricsDownloader(log, activePrometheuses);
download.DownloadAllMetrics();
2023-03-27 12:49:34 +00:00
}
private string GeneratePrometheusConfig(OnlineCodexNode[] nodes)
2023-03-27 12:49:34 +00:00
{
var config = "";
config += "global:\n";
config += " scrape_interval: 30s\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 node in nodes)
2023-03-27 12:49:34 +00:00
{
var ip = node.Group.PodInfo!.Ip;
var port = node.Container.MetricsPort;
config += $" - '{ip}:{port}'\n";
2023-03-27 12:49:34 +00:00
}
var bytes = Encoding.ASCII.GetBytes(config);
return Convert.ToBase64String(bytes);
2023-03-27 12:49:34 +00:00
}
}
public class PrometheusInfo
{
public PrometheusInfo(int servicePort, PodInfo podInfo)
{
ServicePort = servicePort;
PodInfo = podInfo;
}
public int ServicePort { get; }
public PodInfo PodInfo { get; }
}
}