-
Notifications
You must be signed in to change notification settings - Fork 423
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
Synchronous Metric collection (Delta , Cumulative) #1265
Merged
Merged
Changes from 36 commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
c08cf38
collector and reader
lalitb c729c6a
fix format, and memory corruption
lalitb f692e15
changes for metric flow
lalitb ffb54ee
fix bazel build
lalitb 8ecf729
fix ostream exporter
lalitb 18e4f27
Merge branch 'main' into metric-collector
lalitb ad471d0
build error on windows
lalitb 9cc53a4
Merge branch 'metric-collector' of github.com:lalitb/opentelemetry-cp…
lalitb 05c1a8d
initial commit
lalitb f0380a9
implement collect function
lalitb fc657f9
Merge branch 'main' into temporary-storage
lalitb e702e89
fix build
lalitb d12686e
Fix async test
lalitb 884f636
fix spell
lalitb 1874375
fix build
lalitb 12ba367
Merge branch 'main' into temporary-storage
lalitb e011a2b
add comments
lalitb 5ab4f75
comments
lalitb c30b234
temp add .gitpod.yml
lalitb 618de73
fix format
lalitb 66d7af0
fix
lalitb e49e7c4
remove temp files
lalitb da5eb93
fix gcc48 install
lalitb a102d7f
Merge branch 'main' into temporary-storage
lalitb 0551aeb
comment metric exporter till MetricData is finalised
lalitb b5d3bd5
add gcc4.8 TODO
lalitb b4bac61
add gcc4.8 TODO
lalitb 015757c
fix spelling cumulative
lalitb ae65b1d
add tests for sum aggregation, and fix issues
lalitb 29ee87d
Merge branch 'main' into temporary-storage
lalitb 4b31fd3
Fix
lalitb 62d0e92
remove commented code
lalitb 464abf7
Merge branch 'main' into temporary-storage
lalitb 4c26336
fix merge conflict
lalitb cb1c5a4
review comments
lalitb 0a62679
make Aggregation::Merge/Diff/ToPoint methods as const
lalitb 6919d1d
Update sdk/src/metrics/state/sync_metric_storage.cc
lalitb cf3c272
more review comments
lalitb 010d1bc
review comments
lalitb 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
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.
Could this be a template class as it almost the same as
DoubleHistogramAggregatoin
below?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.
This was discussed in one of the earlier PR here:
--snip
Preferred overloaded methods over the template ( for double and long type) to avoid having header-only metrics sdk. The template use had a cascading effect here, forcing to make all inter-related classes as templates. Since this is not a customer-facing API, we have the flexibility to change it later.
--snap