Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add HTTP protocol for OTLP receiver #915

Merged
merged 5 commits into from
Sep 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions deploy/helm/sumologic/templates/otelcol-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ spec:
port: 14268
- name: opencensus # Default endpoint for Opencensus receiver.
port: 55678
- name: otlp # Default endpoint for OTLP receiver.
- name: otlp-grpc # Default endpoint for OTLP gRPC receiver.
port: 55680
{{- end }}
- name: otlp-http # Default endpoint for OTLP HTTP receiver.
port: 55681
{{- end }}
2 changes: 2 additions & 0 deletions deploy/helm/sumologic/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1426,6 +1426,8 @@ otelcol:
protocols:
grpc:
endpoint: "0.0.0.0:55680"
http:
endpoint: "0.0.0.0:55681"
zipkin:
endpoint: "0.0.0.0:9411"
processors:
Expand Down
1 change: 1 addition & 0 deletions deploy/kubernetes/fluentd-sumologic.yaml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -1082,3 +1082,4 @@ spec:
---
# Source: sumologic/templates/otelcol-service.yaml


2 changes: 2 additions & 0 deletions tests/tracing/static/collection-monitoring-false.output.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ data:
protocols:
grpc:
endpoint: 0.0.0.0:55680
http:
endpoint: 0.0.0.0:55681
zipkin:
endpoint: 0.0.0.0:9411
service:
Expand Down
2 changes: 2 additions & 0 deletions tests/tracing/static/simple.output.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ data:
protocols:
grpc:
endpoint: 0.0.0.0:55680
http:
endpoint: 0.0.0.0:55681
zipkin:
endpoint: 0.0.0.0:9411
service:
Expand Down