-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for providers in components command #11900
Open
ChrsMark
wants to merge
8
commits into
open-telemetry:main
Choose a base branch
from
ChrsMark:components_cmd_add_providers
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add support for providers in components command #11900
ChrsMark
wants to merge
8
commits into
open-telemetry:main
from
ChrsMark:components_cmd_add_providers
+56
−0
Conversation
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
Signed-off-by: ChrsMark <[email protected]>
Signed-off-by: ChrsMark <[email protected]>
Signed-off-by: ChrsMark <[email protected]>
Signed-off-by: ChrsMark <[email protected]>
Signed-off-by: ChrsMark <[email protected]>
Sample output./bin/otelcorecol_linux_amd64 components
buildinfo:
command: otelcorecol
description: Local OpenTelemetry Collector binary, testing only.
version: 0.115.0-dev
receivers:
- name: nop
module: go.opentelemetry.io/collector/receiver/nopreceiver v0.115.0
stability:
logs: Beta
metrics: Beta
traces: Beta
- name: otlp
module: go.opentelemetry.io/collector/receiver/otlpreceiver v0.115.0
stability:
logs: Beta
metrics: Stable
traces: Stable
processors:
- name: batch
module: go.opentelemetry.io/collector/processor/batchprocessor v0.115.0
stability:
logs: Beta
metrics: Beta
traces: Beta
- name: memory_limiter
module: go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.115.0
stability:
logs: Beta
metrics: Beta
traces: Beta
exporters:
- name: debug
module: go.opentelemetry.io/collector/exporter/debugexporter v0.115.0
stability:
logs: Development
metrics: Development
traces: Development
- name: nop
module: go.opentelemetry.io/collector/exporter/nopexporter v0.115.0
stability:
logs: Beta
metrics: Beta
traces: Beta
- name: otlp
module: go.opentelemetry.io/collector/exporter/otlpexporter v0.115.0
stability:
logs: Beta
metrics: Stable
traces: Stable
- name: otlphttp
module: go.opentelemetry.io/collector/exporter/otlphttpexporter v0.115.0
stability:
logs: Beta
metrics: Stable
traces: Stable
connectors:
- name: forward
module: go.opentelemetry.io/collector/connector/forwardconnector v0.115.0
stability:
logs-to-logs: Beta
logs-to-metrics: Undefined
logs-to-traces: Undefined
metrics-to-logs: Undefined
metrics-to-metrics: Beta
metrics-to-traces: Undefined
traces-to-logs: Undefined
traces-to-metrics: Undefined
traces-to-traces: Beta
extensions:
- name: memory_limiter
module: go.opentelemetry.io/collector/extension/memorylimiterextension v0.115.0
stability:
extension: Development
- name: zpages
module: go.opentelemetry.io/collector/extension/zpagesextension v0.115.0
stability:
extension: Beta
providers:
- name: env
module: go.opentelemetry.io/collector/confmap/provider/envprovider v1.21.0
- name: file
module: go.opentelemetry.io/collector/confmap/provider/fileprovider v1.21.0
- name: http
module: go.opentelemetry.io/collector/confmap/provider/httpprovider v1.21.0
- name: https
module: go.opentelemetry.io/collector/confmap/provider/httpsprovider v1.21.0
- name: yaml
module: go.opentelemetry.io/collector/confmap/provider/yamlprovider v1.21.0 |
Signed-off-by: ChrsMark <[email protected]>
ChrsMark
requested review from
mx-psi,
evan-bradley and
a team
as code owners
December 16, 2024 14:51
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR adds support for printing config providers with the
components
command.Link to tracking issue
Related to #11570
Testing
Documentation