- Added Punycode encoding implementation for cookie handling. - Introduced serialization for cookie jar with JSON support. - Created a comprehensive README for the tracing provider, detailing configuration and usage. - Developed a configuration structure for tracing, including sampler and reporter settings. - Implemented the provider logic to initialize Jaeger tracer with logging capabilities. - Ensured graceful shutdown of the tracer on application exit.
22 lines
500 B
Plaintext
22 lines
500 B
Plaintext
# Copyright The OpenTelemetry Authors
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
apiVersion: 1
|
|
|
|
datasources:
|
|
- name: Prometheus
|
|
uid: webstore-metrics
|
|
type: prometheus
|
|
url: http://prometheus:9090
|
|
editable: true
|
|
isDefault: true
|
|
jsonData:
|
|
exemplarTraceIdDestinations:
|
|
- datasourceUid: webstore-traces
|
|
name: trace_id
|
|
|
|
- url: http://localhost:8080/jaeger/ui/trace/$${__value.raw}
|
|
name: trace_id
|
|
urlDisplayLabel: View in Jaeger UI
|