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 port #181

Merged
merged 3 commits into from
Nov 26, 2018
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
5 changes: 5 additions & 0 deletions content/docs/next-release/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,13 @@ docker run \
--reporter.tchannel.host-port=jaeger-collector.jaeger-infra.svc:14267
```

Or add `--reporter.type=grpc` and `--reporter.grpc.host-port=jaeger-collector.jaeger-infra.svc:14250` to use gRPC
communication with the collector. Then the `tchannel` option can be removed.

In the future we will support different service discovery systems to dynamically load balance
across several collectors ([issue 213](https://github.com/jaegertracing/jaeger/issues/213)).


## Collectors

The collectors are stateless and thus many instances of **jaeger-collector** can be run in parallel.
Expand All @@ -110,6 +114,7 @@ At default settings the collector exposes the following ports:
Port | Protocol | Function
----- | ------- | ---
14267 | TChannel | used by **jaeger-agent** to send spans in jaeger.thrift format
14250 | gRPC | used by **jaeger-agent** to send spans in model.proto format
14268 | HTTP | can accept spans directly from clients in jaeger.thrift format over binary thrift protocol
9411 | HTTP | can accept Zipkin spans in JSON or Thrift (disabled by default)
14269 | HTTP | Health check at **/**
Expand Down
1 change: 1 addition & 0 deletions content/docs/next-release/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ Port | Protocol | Component | Function
5778 | HTTP | agent | serve configs
16686 | HTTP | query | serve frontend
14268 | HTTP | collector | accept `jaeger.thrift` directly from clients
14250 | HTTP | collector | accept `model.proto`
9411 | HTTP | collector | Zipkin compatible endpoint (optional)


Expand Down