/ ProjectPlugins / MetricsPlugin / PrometheusStartupConfig.cs
PrometheusStartupConfig.cs
 1  namespace MetricsPlugin
 2  {
 3      public class PrometheusStartupConfig
 4      {
 5          public PrometheusStartupConfig(string prometheusConfigBase64)
 6          {
 7              PrometheusConfigBase64 = prometheusConfigBase64;
 8          }
 9  
10          public string PrometheusConfigBase64 { get; }
11      }
12  }