Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Commit

Permalink
Add details on how to set agent & collector endpoint
Browse files Browse the repository at this point in the history
Addresses #122 by adding details on how to set the agent host:port and
the collector URL in the README.

Signed-off-by: Mike Goldsmith <goldsmith.mike@gmail.com>
  • Loading branch information
MikeGoldsmith committed Apr 5, 2019
1 parent cdfaf5b commit 2df0594
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,28 @@ The code can be re-generated with
$ git apply scripts/thrift-gen.patch
```

### Updating Agent Host and Port

The default agent host and port is `127.0.0.1:6831`, you can use a different host/port by updating your reporter configuration.

YAML configuration:

```yml
repoter:
localAgentHostPort: localhost:6831
```
NOTE: It is not recommended to use a remote host for UDP connections.
### Updating Sampling Server URL
The default sampling collector URL is `http://127.0.0.1:5778`, you can use a different URL by updating the sampler configuration.

```yml
sampler:
samplingServerURL: http://jaeger-collector.local:5778
```

## License

[Apache 2.0 License](./LICENSE).
Expand Down

0 comments on commit 2df0594

Please # to comment.