-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Got it working with the latest, and specifying a specific version of …
…the envprovider since, apparently, it versions separately from everything else.
- Loading branch information
Richard Park
committed
Oct 4, 2024
1 parent
2e8aaad
commit bd108fc
Showing
2 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 10 additions & 6 deletions
16
tools/stress-cluster/services/otelcollector/otel-builder.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
# This is used as an input to the `ocb` app that lets you build a customized OpenTelemetry collector, | ||
# This is used as an input to the `ocb` app that lets you build a customized OpenTelemetry collector, | ||
# as described here: https://opentelemetry.io/docs/collector/custom-collector/ | ||
dist: | ||
name: otelcol-custom | ||
description: Local OpenTelemetry Collector binary | ||
output_path: /tmp/dist | ||
otelcol_version: 0.96.0 | ||
otelcol_version: 0.110.0 | ||
providers: | ||
- gomod: go.opentelemetry.io/collector/confmap/provider/envprovider v1.16.0 | ||
- gomod: go.opentelemetry.io/collector/confmap/provider/fileprovider v1.16.0 | ||
|
||
exporters: | ||
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/azuremonitorexporter v0.96.0 | ||
- gomod: go.opentelemetry.io/collector/exporter/debugexporter v0.96.0 | ||
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/azuremonitorexporter v0.110.0 | ||
- gomod: go.opentelemetry.io/collector/exporter/debugexporter v0.110.0 | ||
|
||
receivers: | ||
- gomod: go.opentelemetry.io/collector/receiver/otlpreceiver v0.96.0 | ||
- gomod: go.opentelemetry.io/collector/receiver/otlpreceiver v0.110.0 | ||
|
||
processors: | ||
- gomod: go.opentelemetry.io/collector/processor/batchprocessor v0.96.0 | ||
- gomod: go.opentelemetry.io/collector/processor/batchprocessor v0.110.0 |