-
Notifications
You must be signed in to change notification settings - Fork 780
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
Binary search histograms #3251
Closed
Closed
Binary search histograms #3251
Conversation
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
commit 080927d Author: Cijo Thomas <[email protected]> Date: Thu Sep 23 10:07:05 2021 -0700 Changelog update for 1.2.0.alpha4 (#2407) commit 61aaf2e Author: Reiley Yang <[email protected]> Date: Thu Sep 23 09:37:18 2021 -0700 Simplify tutorials (#2406) commit 78baf7c Author: Reiley Yang <[email protected]> Date: Thu Sep 23 08:02:09 2021 -0700 Implement the metrics dispose/shutdown logic (#2404) commit 256fc2d Author: Michael Maxwell <[email protected]> Date: Wed Sep 22 17:35:15 2021 -0400 Use `Stopwatch.StartNew()` (#2403)
…her.cs yes thank you, good catch Co-authored-by: Robert Pająk <[email protected]>
* Update changelog for next release * rename alpha to beta
…d LogRecord.FormattedMessage. (#3217)
* Remove net5.0 from Zipkin and replace with net6.0 * Public api
* Cleanup net5.0 apps and readme * api doc
* Update main readme with project status * minor adjustments
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 1 to 2. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v1...v2) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This reverts commit b03b18b.
* remove w3c check * unnecessary usings
* Fix handling of OTLP ArrayValue attributes * Update changelog Co-authored-by: Cijo Thomas <[email protected]>
Co-authored-by: Cijo Thomas <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fixes #3248
Changes
When using 140+ buckets for a histogram, it will use binary search instead of linear search.
TODO include results for benchmarks in main and update the HistogramBenchmarks.cs with results from this branch
For significant contributions please make sure you have completed the following items:
CHANGELOG.md
updated for non-trivial changes