-
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.
Add a default build configuration to ocb. (#5752)
Embed the build configuration that is used to build otelcorecol into ocb so that end users can easily generate a useful collector. This makes the `--config` flag optional again. Signed-off-by: James Peach <[email protected]> Signed-off-by: James Peach <[email protected]>
- Loading branch information
Showing
8 changed files
with
153 additions
and
26 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
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
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
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
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,32 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package config // import "go.opentelemetry.io/collector/cmd/builder/internal/config" | ||
|
||
import ( | ||
"embed" | ||
|
||
"github.com/knadh/koanf" | ||
"github.com/knadh/koanf/providers/fs" | ||
) | ||
|
||
//go:embed *.yaml | ||
var configs embed.FS | ||
|
||
// DefaultProvider returns a koanf.Provider that provides the default build | ||
// configuration file. This is the same configuration that otelcorecol is | ||
// built with. | ||
func DefaultProvider() koanf.Provider { | ||
return fs.Provider(configs, "default.yaml") | ||
} |
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,28 @@ | ||
dist: | ||
module: go.opentelemetry.io/collector/cmd/otelcorecol | ||
name: otelcorecol | ||
description: Local OpenTelemetry Collector binary, testing only. | ||
version: 0.59.0-dev | ||
otelcol_version: 0.59.0 | ||
|
||
receivers: | ||
- import: go.opentelemetry.io/collector/receiver/otlpreceiver | ||
gomod: go.opentelemetry.io/collector v0.59.0 | ||
exporters: | ||
- import: go.opentelemetry.io/collector/exporter/loggingexporter | ||
gomod: go.opentelemetry.io/collector v0.59.0 | ||
- import: go.opentelemetry.io/collector/exporter/otlpexporter | ||
gomod: go.opentelemetry.io/collector v0.59.0 | ||
- import: go.opentelemetry.io/collector/exporter/otlphttpexporter | ||
gomod: go.opentelemetry.io/collector v0.59.0 | ||
extensions: | ||
- import: go.opentelemetry.io/collector/extension/ballastextension | ||
gomod: go.opentelemetry.io/collector v0.59.0 | ||
- import: go.opentelemetry.io/collector/extension/zpagesextension | ||
gomod: go.opentelemetry.io/collector v0.59.0 | ||
processors: | ||
- import: go.opentelemetry.io/collector/processor/batchprocessor | ||
gomod: go.opentelemetry.io/collector v0.59.0 | ||
- import: go.opentelemetry.io/collector/processor/memorylimiterprocessor | ||
gomod: go.opentelemetry.io/collector v0.59.0 | ||
|
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 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