Replies: 1 comment
-
some references: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Support opentelemetry.io
This is an industry standard and is supported by all metric/tracing vendors.
Use cases
Allow access to all collectors
https://opentelemetry.io/registry/?language=collector&component=exporter
Setup auto tracing/metrics
the tracing will be default off
auto tracing
in the stack.yaml
what this will do:
The only required sdk part below is
resources.NewTracerProvider()
which initializesthe correct exporter and resource.
If this is used, then there is no need to configure the stack.yaml as this will be populated with the results
of creating the resource.
open questions
The opentelemetry config is quite big. it would be nice to not have to specify all of it.
The part we really need provided is the
exporters
, see: https://opentelemetry.io/docs/collector/configuration/Beta Was this translation helpful? Give feedback.
All reactions