mirror of https://github.com/go-redis/redis.git
833 B
833 B
Example for go-redis OpenTelemetry instrumentation
See Monitoring performance and errors for details.
This example requires Redis Server on port :6379
. You can start Redis Server using Docker:
docker-compose up -d
You can run this example with different OpenTelemetry exporters by providing environment variables.
Stdout exporter (default):
go run .
Jaeger exporter:
OTEL_EXPORTER_JAEGER_ENDPOINT=http://localhost:14268/api/traces go run .
Uptrace exporter:
UPTRACE_DSN="https://<token>@uptrace.dev/<project_id>" go run .