Skip to content

Commit

Permalink
Add Grpc port (#181)
Browse files Browse the repository at this point in the history
* Add grpc port

Signed-off-by: Pavol Loffay <ploffay@redhat.com>

* Add grpc to getting started

Signed-off-by: Pavol Loffay <ploffay@redhat.com>

* Fix review

Signed-off-by: Pavol Loffay <ploffay@redhat.com>
  • Loading branch information
pavolloffay committed Nov 26, 2018
1 parent e417025 commit 6dccdc4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
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

0 comments on commit 6dccdc4

Please sign in to comment.