Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/ci-markdownlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

# equivalent cli: markdownlint-cli2 "**/*.md" "#**/CHANGELOG.md" "#.github/**" --config .markdownlint.json
- name: "Markdown Lint Check"
uses: DavidAnson/markdownlint-cli2-action@v19
uses: DavidAnson/markdownlint-cli2-action@v22
with:
config: .markdownlint.json
fix: false
Expand Down
12 changes: 6 additions & 6 deletions exporter/jaeger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ The agent exporter can be configured explicitly in code, as shown above, or via

The collector exporter can be configured explicitly in code, as shown above, or via environment variables. The configuration parameters, environment variables, and defaults are shown below.

| Parameter | Environment variable | Default |
| ------------------ | ---------------------------------------------- | -------------------------- |
| Parameter | Environment variable | Default |
| ------------------ | ---------------------------------------------- | ------------------------------------- |
| `endpoint:` | `OTEL_EXPORTER_JAEGER_ENDPOINT` | `"http://localhost:14268/api/traces"` |
| `username:` | `OTEL_EXPORTER_JAEGER_USER` | `nil` |
| `password:` | `OTEL_EXPORTER_JAEGER_PASSWORD` | `nil` |
| `ssl_verify_mode:` | `OTEL_RUBY_EXPORTER_JAEGER_SSL_VERIFY_PEER` or | `OpenSSL::SSL:VERIFY_PEER` |
| | `OTEL_RUBY_EXPORTER_JAEGER_SSL_VERIFY_NONE` | |
| `username:` | `OTEL_EXPORTER_JAEGER_USER` | `nil` |
| `password:` | `OTEL_EXPORTER_JAEGER_PASSWORD` | `nil` |
| `ssl_verify_mode:` | `OTEL_RUBY_EXPORTER_JAEGER_SSL_VERIFY_PEER` or | `OpenSSL::SSL:VERIFY_PEER` |
| | `OTEL_RUBY_EXPORTER_JAEGER_SSL_VERIFY_NONE` | |

`ssl_verify_mode:` parameter values should be flags for server certificate verification: `OpenSSL::SSL:VERIFY_PEER` and `OpenSSL::SSL:VERIFY_NONE` are acceptable. These values can also be set using the appropriately named environment variables as shown where `VERIFY_PEER` will take precedence over `VERIFY_NONE`. Please see [the Net::HTTP docs](https://ruby-doc.org/stdlib-2.7.6/libdoc/net/http/rdoc/Net/HTTP.html#verify_mode) for more information about these flags.

Expand Down