chore(otel.plugin): fix building (#20368)
Ilya Mashchenko committed
May 28, 2025 at 14:46 UTC
ea312087c544495a4cd8b96756293900b0cb9627
1 file changed
+1
-1
src/go/otel-collector/exporter/netdataexporter/convert.go
+1
-1
@@ -43,7 +43,7 @@ type DimensionDefinition struct {
43
const maxChartIDLength = 1000
44
45
// Convert transforms OTLP metrics into Netdata charts
46
-func (e *netdataExporter) Convert(pms pmetric.Metrics) map[string]*ChartDefinition {
46
+func (e *netdataExporter) convert(pms pmetric.Metrics) map[string]*ChartDefinition {
47
// Track new and updated charts in this batch
48
currentCharts := make(map[string]bool, len(e.charts))
49