mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-10 09:23:11 +00:00
33 lines
592 B
C#
33 lines
592 B
C#
using Core;
|
|
using KubernetesWorkflow;
|
|
using Logging;
|
|
|
|
namespace MetricsPlugin
|
|
{
|
|
public class MetricsPlugin : IProjectPlugin
|
|
{
|
|
|
|
#region IProjectPlugin Implementation
|
|
|
|
public void Announce(ILog log)
|
|
{
|
|
log.Log("Hi from the metrics plugin.");
|
|
}
|
|
|
|
public void Initialize(IPluginTools tools)
|
|
{
|
|
}
|
|
|
|
public void Finalize(ILog log)
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
|
|
public RunningContainer StartMetricsCollector(RunningContainers[] scrapeTargets)
|
|
{
|
|
return null!;
|
|
}
|
|
}
|
|
}
|