Skip to content

Commit 7ae2f5f

Browse files
cmacknzpchila
andauthored
Remove scary experimental warning when using the otel runtime (#10187)
* Remove experimental warning for otel runtime. * Change from Warn to Info since this isn't a warning Co-authored-by: Paolo Chilà <[email protected]> --------- Co-authored-by: Paolo Chilà <[email protected]>
1 parent 47d0765 commit 7ae2f5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/pkg/agent/application/coordinator/coordinator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1779,7 +1779,7 @@ func (c *Coordinator) updateManagersWithConfig(model *component.Model) {
17791779
for _, comp := range otelModel.Components {
17801780
componentIDs = append(componentIDs, comp.ID)
17811781
}
1782-
c.logger.With("component_ids", componentIDs).Warn("The Otel runtime manager is HIGHLY EXPERIMENTAL and only intended for testing. Use at your own risk.")
1782+
c.logger.With("component_ids", componentIDs).Info("Using OpenTelemetry collector runtime.")
17831783
}
17841784
c.otelMgr.Update(c.otelCfg, otelModel.Components)
17851785
}

0 commit comments

Comments
 (0)