Skip to content

Commit

Permalink
permutes variable convention
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Cole committed Apr 25, 2019
1 parent 2f030b6 commit 1493b51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions zipkin-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -371,15 +371,14 @@ $ RABBIT_ADDRESSES=localhost java -jar zipkin.jar
```

### gRPC Collector (Experimental)

You can enable a gRPC span collector endpoint by setting `GRPC_SERVER_ENABLED=true`. The
You can enable a gRPC span collector endpoint by setting `COLLECTOR_GRPC_ENABLED=true`. The
`zipkin.proto3.SpanService/Report` endpoint will run on the same port as normal http (9411).


If you need to deploy a collector-only server, you can disable other http endpoints like so:
Example usage:

```bash
GRPC_COLLECTOR_ENABLED=true HTTP_COLLECTOR_ENABLED=false QUERY_ENABLED=false java -jar zipkin.jar
COLLECTOR_GRPC_ENABLED=true java -jar zipkin.jar
```

As this service is experimental, it is not recommended to run this in production environments.
Expand Down
2 changes: 1 addition & 1 deletion zipkin-server/src/main/resources/zipkin-server-shared.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ zipkin:
enabled: ${HTTP_COLLECTOR_ENABLED:true}
grpc:
# Set to true to enable the GRPC collector
enabled: ${GRPC_COLLECTOR_ENABLED:false}
enabled: ${COLLECTOR_GRPC_ENABLED:false}
kafka:
# Kafka bootstrap broker list, comma-separated host:port values. Setting this activates the
# Kafka 0.10+ collector.
Expand Down

0 comments on commit 1493b51

Please sign in to comment.