mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-03-14 07:33:19 +00:00
28 lines
495 B
C#
28 lines
495 B
C#
using Core;
|
|
using KubernetesWorkflow;
|
|
|
|
namespace MetricsPlugin
|
|
{
|
|
public class MetricsPlugin : IProjectPlugin
|
|
{
|
|
|
|
#region IProjectPlugin Implementation
|
|
|
|
public void Announce()
|
|
{
|
|
//log.Log("Hi from the metrics plugin.");
|
|
}
|
|
|
|
public void Decommission()
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
|
|
public RunningContainer StartMetricsCollector(RunningContainers[] scrapeTargets)
|
|
{
|
|
return null!;
|
|
}
|
|
}
|
|
}
|