2023-09-13 07:12:18 +00:00
|
|
|
|
using Core;
|
|
|
|
|
using KubernetesWorkflow;
|
|
|
|
|
|
|
|
|
|
namespace MetricsPlugin
|
|
|
|
|
{
|
|
|
|
|
public static class CoreInterfaceExtensions
|
|
|
|
|
{
|
|
|
|
|
public static RunningContainer StartMetricsCollector(this CoreInterface ci, RunningContainers[] scrapeTargets)
|
|
|
|
|
{
|
2023-09-13 08:23:05 +00:00
|
|
|
|
return null!;// Plugin(ci).StartMetricsCollector(scrapeTargets);
|
2023-09-13 07:12:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static MetricsPlugin Plugin(CoreInterface ci)
|
|
|
|
|
{
|
|
|
|
|
return ci.GetPlugin<MetricsPlugin>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|