-
Notifications
You must be signed in to change notification settings - Fork 351
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
Print percentiles in benchmark #2699
Open
RomanZavodskikh
wants to merge
1
commit into
master
Choose a base branch
from
printPercentilesInBenchmark_2
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+65
−42
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
RomanZavodskikh
force-pushed
the
printPercentilesInBenchmark_2
branch
from
October 23, 2023 13:41
85139c5
to
b02f03f
Compare
szuecs
reviewed
Oct 26, 2023
go.mod
Outdated
@@ -72,6 +72,7 @@ require ( | |||
github.com/OneOfOne/xxhash v1.2.8 // indirect | |||
github.com/agnivade/levenshtein v1.1.1 // indirect | |||
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da // indirect | |||
github.com/benburkert/pbench v0.0.0-20160623210926-4ec5821845ef // indirect |
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.
dependency from 2016, do we need this or can we copy a function into our code base?
szuecs
reviewed
Oct 26, 2023
@@ -93,6 +94,7 @@ require ( | |||
github.com/envoyproxy/protoc-gen-validate v1.0.2 // indirect | |||
github.com/felixge/httpsnoop v1.0.3 // indirect | |||
github.com/fsnotify/fsnotify v1.6.0 // indirect | |||
github.com/gavv/monotime v0.0.0-20190418164738-30dba4353424 // indirect |
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.
dependency from 2019 maybe we can copy a func to our own repository
AlexanderYastrebov
force-pushed
the
cw2023freeze
branch
from
November 27, 2023 12:18
803d0c9
to
ede5467
Compare
This is needed to improve the performance impact of this component. Signed-off-by: Roman Zavodskikh <roman.zavodskikh@zalando.de>
RomanZavodskikh
force-pushed
the
printPercentilesInBenchmark_2
branch
from
November 21, 2024 14:32
b02f03f
to
29fb706
Compare
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.
This is needed to improve the performance impact of this component.