Add prometheus sink to the list of available sinks

This commit is contained in:
Michael Schwarz 2024-03-26 13:50:55 +01:00
parent ad345cd633
commit bd1a708502

View File

@ -21,6 +21,7 @@ var AvailableSinks = map[string]func(name string, config json.RawMessage) (Sink,
"influxdb": NewInfluxSink, "influxdb": NewInfluxSink,
"influxasync": NewInfluxAsyncSink, "influxasync": NewInfluxAsyncSink,
"http": NewHttpSink, "http": NewHttpSink,
"prometheus": NewPrometheusSink,
} }
// Metric collector manager data structure // Metric collector manager data structure