-
Notifications
You must be signed in to change notification settings - Fork 839
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
MetricReader and Multi-export features #3578
Merged
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
d654410
Start of multi-exporter codebase.
jsuereth 9b77bc5
Restore InMemoryExporter + fix javadocs.
jsuereth 6b6357e
Quick javadoc fix
jsuereth f8af124
Fix some javadoc build failures and missing things.
jsuereth fd448a9
Fix bug with autoconfigure
jsuereth e6b5281
Modify InMemoryMetricReader + register methods to allow for immutable…
jsuereth abea187
Merge remote-tracking branch 'otel/main' into wip-multi-exporters
jsuereth 559cec5
Make metric-readers 'immutable' post-construction of SdkMeterProvider…
jsuereth b054e70
Fix integration test.
jsuereth 7c8de33
Fix jmh benchmarks for trace.
jsuereth b30d600
Fix jmh build.
jsuereth 8533e83
Fix broken in-memory exporter things, and Noop API issue.
jsuereth 646faff
Merge remote-tracking branch 'origin/main' into wip-multi-exporters
jsuereth a1a296f
Migrate MetricReader.Factory to MetricReaderFactory.
jsuereth bfba057
Rename PeriodMetricReader.Factory to PeriodicMetricReaderFactory.
jsuereth bf31313
Apply suggestions from code review
jsuereth 779c569
Minor cleanup of ColectionHandle.
jsuereth b0b56e0
Fixes from review.
jsuereth e97907f
Extract delta accumulation and add tests.
jsuereth f2aa483
Fragment the abstraction in SynchronousMetricStorage for better separ…
jsuereth baa6f0b
Add tests (and minor optimisation) for delta metric storage.
jsuereth 20c7397
Add test for temporal metric storage.
jsuereth 4f5338a
Update temporal metric storage to fix issue w/ async instruments.
jsuereth 9fec8fe
Migrate Async storage to use temporal metric storage (with better tes…
jsuereth 0b94478
Another fix from review.
jsuereth 799af98
Remove start epoch nano parameter from storage constructors.
jsuereth 44833fc
Fixes from review.
jsuereth a697826
Migrate flush -> forceFlush as per review.
jsuereth c259d86
Add test coverage for flush.
jsuereth 0a02048
Merge remote-tracking branch 'origin/main' into wip-multi-exporters
jsuereth 45238b5
Fixes from review.
jsuereth 730e144
Fix public API breakage.
jsuereth f181723
Fixes from review.
jsuereth 19db3a1
Merge branch 'main' of github.com:open-telemetry/opentelemetry-java i…
e46f459
Fix threadsafe annotations
jsuereth File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 0 additions & 48 deletions
48
...etheus/src/main/java/io/opentelemetry/exporter/prometheus/PrometheusCollectorBuilder.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 big deal but looks like can be singleton
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.
There's a refactoring (I can do in this PR or later) where we instantiate the HTTP server as part of the factory (configurable). Would you like that in this PR? I'll add a note in the meantime.