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

grpc to http/protobuf #712

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion docs/_include/tracing-shipping/collector-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
receivers:
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down
4 changes: 2 additions & 2 deletions docs/_include/tracing-shipping/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Create a file `config.yaml` with the following content:
receivers:
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down Expand Up @@ -106,7 +106,7 @@ Here is an example configuration file:
receivers:
otlp:
protocols:
grpc:
http/protobuf:
http:

exporters:
Expand Down
4 changes: 2 additions & 2 deletions docs/_include/tracing-shipping/otel-troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The collector may not have the correct endpoint configured for the receiver.
receivers:
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down Expand Up @@ -60,7 +60,7 @@ The correct endpoints are:
receivers:
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "<<COLLECTOR-URL>>:4317"
http:
endpoint: "<<COLLECTOR-URL>>:4318/v1/traces"
Expand Down
2 changes: 1 addition & 1 deletion docs/shipping/AWS/aws-ecs-fargate.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ receivers:
transport: udp
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down
2 changes: 1 addition & 1 deletion docs/shipping/AWS/aws-lambda-extension-go.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ The `collector.yaml` file will have the following configuration:
receivers:
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down
2 changes: 1 addition & 1 deletion docs/shipping/AWS/aws-lambda-extension-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ The `collector.yaml` file will have the following configuration:
receivers:
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down
2 changes: 1 addition & 1 deletion docs/shipping/App360/App360.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ After setting up the collector, create a configuration file `config.yaml` with t
receivers:
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down
6 changes: 3 additions & 3 deletions docs/shipping/Code/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ Add `collector.yaml` at the root of your lambda function:
receivers:
otlp:
protocols:
grpc:
http/protobuf:
http:

exporters:
Expand Down Expand Up @@ -1150,7 +1150,7 @@ Create a `config.yaml` file with the following content:
receivers:
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down Expand Up @@ -1240,7 +1240,7 @@ An example configuration file:
receivers:
otlp:
protocols:
grpc:
http/protobuf:
http:

exporters:
Expand Down
2 changes: 1 addition & 1 deletion docs/shipping/Other/jaeger.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ receivers:
endpoint: "0.0.0.0:6831"
thrift_binary:
endpoint: "0.0.0.0:6832"
grpc:
http/protobuf:
endpoint: "0.0.0.0:14250"
thrift_http:
endpoint: "0.0.0.0:14268"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ If the collector is installed, it may not have the correct endpoint configured f
endpoint: "0.0.0.0:6831"
thrift_binary:
endpoint: "0.0.0.0:6832"
grpc:
http/protobuf:
endpoint: "0.0.0.0:14250"
thrift_http:
endpoint: "0.0.0.0:14268"
opencensus:
endpoint: "0.0.0.0:55678"
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
Expand Down Expand Up @@ -90,15 +90,15 @@ The correct endpoints are:
endpoint: "<<COLLECTOR-URL>>:6831"
thrift_binary:
endpoint: "<<COLLECTOR-URL>>:6832"
grpc:
http/protobuf:
endpoint: "<<COLLECTOR-URL>>:14250"
thrift_http:
endpoint: "<<COLLECTOR-URL>>:14268"
opencensus:
endpoint: "<<COLLECTOR-URL>>:55678"
otlp:
protocols:
grpc:
http/protobuf:
endpoint: "<<COLLECTOR-URL>>:4317"
http:
endpoint: "<<COLLECTOR-URL>>:4318/v1/traces"
Expand Down
Loading