-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Builder]: Test with current head and latest release
Signed-off-by: Bogdan Drutu <[email protected]>
- Loading branch information
1 parent
70271f2
commit 0b19d20
Showing
6 changed files
with
44 additions
and
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
= Testing for the OpenTelemetry Collector Builder | ||
# Testing for the OpenTelemetry Collector Builder | ||
|
||
This is a set of end-to-end tests for the builder. As such, it includes only positive tests, based on the manifest files in this directory. Each manifest is expected to be in a working state and should yield an OpenTelemetry Collector instance that is ready within a time interval. "Ready" is defined by calling its healthcheck endpoint. |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
dist: | ||
module: go.opentelemetry.io/collector/builder/test/core | ||
otelcol_version: 0.44.0 | ||
|
||
extensions: | ||
- import: go.opentelemetry.io/collector/extension/zpagesextension | ||
gomod: go.opentelemetry.io/collector v0.44.0 | ||
|
||
receivers: | ||
- import: go.opentelemetry.io/collector/receiver/otlpreceiver | ||
gomod: go.opentelemetry.io/collector v0.44.0 | ||
|
||
exporters: | ||
- import: go.opentelemetry.io/collector/exporter/loggingexporter | ||
gomod: go.opentelemetry.io/collector v0.44.0 | ||
|
||
replaces: | ||
- go.opentelemetry.io/collector => ../../../../ | ||
- go.opentelemetry.io/collector/model => ../../../../model |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
extensions: | ||
zpages: | ||
|
||
receivers: | ||
otlp: | ||
protocols: | ||
grpc: | ||
|
||
processors: | ||
|
||
exporters: | ||
logging: | ||
|
||
service: | ||
extensions: [zpages] | ||
pipelines: | ||
traces: | ||
receivers: | ||
- otlp | ||
processors: [] | ||
exporters: | ||
- logging |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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