mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-05 15:03:12 +00:00
19 lines
470 B
C#
19 lines
470 B
C#
|
|
using Core;
|
|||
|
|
using KubernetesWorkflow;
|
|||
|
|
|
|||
|
|
namespace MetricsPlugin
|
|||
|
|
{
|
|||
|
|
public static class CoreInterfaceExtensions
|
|||
|
|
{
|
|||
|
|
public static RunningContainer StartMetricsCollector(this CoreInterface ci, RunningContainers[] scrapeTargets)
|
|||
|
|
{
|
|||
|
|
return Plugin(ci).StartMetricsCollector(scrapeTargets);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private static MetricsPlugin Plugin(CoreInterface ci)
|
|||
|
|
{
|
|||
|
|
return ci.GetPlugin<MetricsPlugin>();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|