-
Notifications
You must be signed in to change notification settings - Fork 23
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
plugin: flight recorder export #437
Closed
DifferentialOrange
wants to merge
6
commits into
DifferentialOrange/new-export-format
from
DifferentialOrange/compute-aggregates
Closed
plugin: flight recorder export #437
DifferentialOrange
wants to merge
6
commits into
DifferentialOrange/new-export-format
from
DifferentialOrange/compute-aggregates
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
github-actions
bot
temporarily deployed
to
translation-compute-aggregates
February 15, 2023 17:29
Inactive
DifferentialOrange
force-pushed
the
DifferentialOrange/compute-aggregates
branch
from
February 16, 2023 07:59
4c7dd99
to
26a382e
Compare
github-actions
bot
temporarily deployed
to
translation-compute-aggregates
February 16, 2023 08:04
Inactive
DifferentialOrange
force-pushed
the
DifferentialOrange/compute-aggregates
branch
from
February 16, 2023 08:44
26a382e
to
7f6baeb
Compare
github-actions
bot
temporarily deployed
to
translation-compute-aggregates
February 16, 2023 08:49
Inactive
DifferentialOrange
force-pushed
the
DifferentialOrange/compute-aggregates
branch
from
February 16, 2023 15:29
7f6baeb
to
e1fc020
Compare
github-actions
bot
temporarily deployed
to
translation-compute-aggregates
February 16, 2023 15:34
Inactive
DifferentialOrange
force-pushed
the
DifferentialOrange/new-export-format
branch
from
February 16, 2023 15:47
80db8c6
to
cc08eec
Compare
This patch introduces new handle to compute metrics aggregates like per second rate, max, min and average. Aggregates are marked with metainfo field. Aggregates for aggregates are not computed. Part of tarantool/tarantool#7725 Part of tarantool/tarantool#7728
This patch introduces tool to compute counters per second rate. No additional deepcopies are performed, same as in collect. Part of tarantool/tarantool#7725 Part of tarantool/tarantool#7728
This patch introduces tool to compute counters per second rate. No additional deepcopies are performed, same as in collect. Part of tarantool/tarantool#7725 Part of tarantool/tarantool#7728
This patch introduces tool to compute counters per second rate. No additional deepcopies are performed, same as in collect. Part of tarantool/tarantool#7725 Part of tarantool/tarantool#7728
DifferentialOrange
force-pushed
the
DifferentialOrange/compute-aggregates
branch
from
February 16, 2023 16:08
e1fc020
to
545617f
Compare
github-actions
bot
temporarily deployed
to
translation-compute-aggregates
February 16, 2023 16:13
Inactive
Add plugin to export up-to-date metrics with their aggregates to Flight recorder. Plugin API contains of two handles: export() return extended format metrics table, plain_format(output) allows to get human-readable minimal useful metrics info. Part of tarantool/tarantool#7725 Part of tarantool/tarantool#7728
DifferentialOrange
force-pushed
the
DifferentialOrange/compute-aggregates
branch
from
February 17, 2023 08:28
545617f
to
a1ac966
Compare
Closed in favor of https://github.com/tarantool/roadmap-internal/issues/217 |
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 PR gets advantage of the new export format introduced in #436 and provides new API to compute aggregates like per second rate, min, max and average. New handles used to build Flight recorder exporter plugin. See commits for more detailed info.
I didn't forget about
Part of tarantool/tarantool#7725
Part of tarantool/tarantool#7728