Skip to content

Instantly share code, notes, and snippets.

@avillela
Last active October 24, 2022 15:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avillela/ecc6929f60c563febadb305edf006cf4 to your computer and use it in GitHub Desktop.
Save avillela/ecc6929f60c563febadb305edf006cf4 to your computer and use it in GitHub Desktop.
Lightstep-specific values YAML config for the OpenTelemetry Demo App Helm Chart
opentelemetry-collector:
nameOverride: otelcol
mode: deployment
extraEnvs:
- name: LS_TOKEN
valueFrom:
secretKeyRef:
key: LS_TOKEN
name: otel-collector-secret
resources:
limits:
memory: 100Mi
config:
exporters:
otlp/ls:
endpoint: ingest.lightstep.com:443
timeout: 30s
tls:
insecure_skip_verify: true
headers:
"lightstep-access-token": "${LS_TOKEN}"
otlp:
endpoint: '{{ .Release.Name }}-jaeger:4317'
tls:
insecure: true
logging:
logLevel: debug
processors:
resource:
attributes:
- key: service
from_attribute: service.name
action: insert
resource/add_container:
attributes:
- key: container
from_attribute: service.name
action: insert
service:
pipelines:
metrics:
exporters:
- logging
- otlp/ls
processors:
- resource
traces:
exporters:
- logging
- otlp
- otlp/ls
processors:
- resource/add_container
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment