-
Notifications
You must be signed in to change notification settings - Fork 846
SOLR-18310: opentelemetry module should not ship Netty JARs #4646
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
5158168
83826f0
6e66c95
bcb434d
9151d33
29ba510
a7bc701
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| title: > | ||
| opentelemetry: the default OTLP sender is now http/protobuf port 4318 and with fewer/no JARs to do so. | ||
| JARs for others like gRPC have been removed but users can add as they need. | ||
| type: dependency_update | ||
| authors: | ||
| - name: David Smiley | ||
| links: | ||
| - name: SOLR-18310 | ||
| url: https://issues.apache.org/jira/browse/SOLR-18310 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,7 +25,7 @@ public interface MetricExporterFactory { | |
| Boolean.parseBoolean(EnvUtils.getProperty("solr.metrics.otlpExporterEnabled", "false")); | ||
|
|
||
| public static final String OTLP_EXPORTER_PROTOCOL = | ||
| EnvUtils.getProperty("solr.metrics.otlpExporterProtocol", "grpc"); | ||
| EnvUtils.getProperty("solr.metrics.otlpExporterProtocol", "http"); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do we know that http is the default choice in the otel world? I guess in my head I thought grpc for performacne reasons? But I'm not an expert!
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OTLP http/protobuf is widely supported OOTB on recipients AFAICT. I suspect users won't notice this change, but it's not something to withhold from a changelog.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The default is grpc but I am ok with http. |
||
|
|
||
| public static final int OTLP_EXPORTER_INTERVAL = | ||
| Integer.parseInt(EnvUtils.getProperty("solr.metrics.otlpExporterInterval", "60000")); | ||
|
|
||
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| a444a2c56f7b40cbde39bc542523a912811b7d97 |
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a typical dependency_update usage (isn't an upgrade) but why not use it here.
CC @janhoy