cs-codex-dist-tests/DistTestCore/PrometheusStarter.cs

53 lines
1.9 KiB
C#
Raw Normal View History

2023-04-13 12:36:17 +00:00
using DistTestCore.Codex;
using DistTestCore.Metrics;
using KubernetesWorkflow;
using System.Text;
namespace DistTestCore
{
2023-04-18 11:45:48 +00:00
public class PrometheusStarter : BaseStarter
2023-04-13 12:36:17 +00:00
{
public PrometheusStarter(TestLifecycle lifecycle)
: base(lifecycle)
2023-04-13 12:36:17 +00:00
{
}
public RunningContainers CollectMetricsFor(RunningContainers[] containers)
2023-04-13 12:36:17 +00:00
{
2023-04-18 11:45:48 +00:00
LogStart($"Starting metrics server for {containers.Describe()}");
2023-04-13 12:36:17 +00:00
var startupConfig = new StartupConfig();
startupConfig.Add(new PrometheusStartupConfig(GeneratePrometheusConfig(containers.Containers())));
2023-04-13 12:36:17 +00:00
var workflow = lifecycle.WorkflowCreator.CreateWorkflow();
2023-04-13 12:36:17 +00:00
var runningContainers = workflow.Start(1, Location.Unspecified, new PrometheusContainerRecipe(), startupConfig);
if (runningContainers.Containers.Length != 1) throw new InvalidOperationException("Expected only 1 Prometheus container to be created.");
return runningContainers;
2023-04-13 12:36:17 +00:00
}
private string GeneratePrometheusConfig(RunningContainer[] nodes)
{
var config = "";
config += "global:\n";
2023-08-16 14:13:29 +00:00
config += " scrape_interval: 10s\n";
2023-04-13 12:36:17 +00:00
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)
{
var ip = node.Pod.PodInfo.Ip;
2023-04-13 12:36:17 +00:00
var port = node.Recipe.GetPortByTag(CodexContainerRecipe.MetricsPortTag).Number;
config += $" - '{ip}:{port}'\n";
}
var bytes = Encoding.ASCII.GetBytes(config);
return Convert.ToBase64String(bytes);
}
}
}