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

Add details on how to set agent & collector endpoints #153

Merged
Merged
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
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