From 57bde83bbef3cb55f67ad8824082454cbd3fc553 Mon Sep 17 00:00:00 2001 From: Carson Long Date: Mon, 21 Aug 2023 21:49:55 +0000 Subject: [PATCH] chore(otel-collector): use non-GA version Set the version of our OTel Collector distribution to 0.1.0 to indicate that it is experimental. Signed-off-by: Matthew Kocher --- src/otel-collector/config.yaml | 1 + src/otel-collector/main.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/otel-collector/config.yaml b/src/otel-collector/config.yaml index bac170cd6..82296e1a0 100644 --- a/src/otel-collector/config.yaml +++ b/src/otel-collector/config.yaml @@ -4,6 +4,7 @@ dist: description: Cloud Foundry OpenTelemetry Collector otelcol_version: 0.82.0 output_path: otel-collector + version: 0.1.0 exporters: - gomod: go.opentelemetry.io/collector/exporter/otlpexporter v0.82.0 diff --git a/src/otel-collector/main.go b/src/otel-collector/main.go index c2ddccdee..3c5dd8347 100644 --- a/src/otel-collector/main.go +++ b/src/otel-collector/main.go @@ -18,7 +18,7 @@ func main() { info := component.BuildInfo{ Command: "cf-otel-collector", Description: "Cloud Foundry OpenTelemetry Collector", - Version: "1.0.0", + Version: "0.1.0", } if err := run(otelcol.CollectorSettings{BuildInfo: info, Factories: factories}); err != nil {