Skip to content

Commit

Permalink
Make Otelcol listen on 0.0.0.0 rather than localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
pmaciolek authored and perk-sumo committed Mar 9, 2020
1 parent 256cf9c commit d83f976
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions deploy/helm/sumologic/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -518,14 +518,18 @@ otelcol:
memBallastSizeMib: "683"
image:
name: "sumologic/opentelemetry-collector"
tag: "0.2.6.4"
tag: "0.2.6.5"
pullPolicy: IfNotPresent
config:
receivers:
opencensus: {}
opencensus:
endpoint: "0.0.0.0:55678"
jaeger:
protocols:
grpc:
endpoint: "0.0.0.0:14250"
thrift_http:
endpoint: "0.0.0.0:14268"
zipkin:
endpoint: "0.0.0.0:9411"
processors:
Expand Down Expand Up @@ -582,6 +586,8 @@ otelcol:
exporters:
zipkin:
url: "exporters.zipkin.url_replace"
# Following generates verbose logs with span content, useful to verify what
# metadata is being tagged. To enable, uncomment and add "logging" to exporters below
# logging:
# loglevel: debug
service:
Expand Down

0 comments on commit d83f976

Please sign in to comment.