2023-09-13 09:25:08 +00:00
|
|
|
|
namespace MetricsPlugin
|
|
|
|
|
{
|
|
|
|
|
public class PrometheusStartupConfig
|
|
|
|
|
{
|
|
|
|
|
public PrometheusStartupConfig(string prometheusConfigBase64)
|
|
|
|
|
{
|
|
|
|
|
PrometheusConfigBase64 = prometheusConfigBase64;
|
|
|
|
|
}
|
2023-09-11 09:59:33 +00:00
|
|
|
|
|
2023-09-13 09:25:08 +00:00
|
|
|
|
public string PrometheusConfigBase64 { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|