-
Notifications
You must be signed in to change notification settings - Fork 178
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
feat(robot-server, api, performance-metrics): get performance metrics to work on robot #15008
Closed
Closed
Changes from 21 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
8e5aa72
refactor(performance-metrics): pull out storage logic into class
DerekMaggio e8ebdf2
chore: add add method. Move data store tests
DerekMaggio 9ee562a
chore: small fixes
DerekMaggio d8d6ca3
Stop constant from being modified
DerekMaggio 6797aca
storage format is not being used
DerekMaggio b405cef
Make file name match
DerekMaggio e5a0779
another typo
DerekMaggio e7a4d28
linting
DerekMaggio 9789604
hopefully fix whitespace issue on windows
DerekMaggio 700770d
feat: Add storing analysis context on track
DerekMaggio cb16dd7
WIP
DerekMaggio eccf62a
fix: move store_each functionality to robot_context_tracker
DerekMaggio 416d3b2
fix: turns out async functions were not being handled at all
DerekMaggio 995ef45
test: only test store each functionality
DerekMaggio 9eca61e
chore: helps if I actually wrap the correct function
DerekMaggio f8bdbf0
chore: formatting and linting
DerekMaggio f1b122c
missed this
DerekMaggio 4497565
Add some makefile changes
DerekMaggio 472cc36
I just want the .gitignore to the be the same
DerekMaggio d693337
formatting
DerekMaggio 57adce3
Merge branch 'edge' into getting-performance-metrics-to-work-on-robot
DerekMaggio cb27ed1
chore: bad conflict resolution skills
DerekMaggio c85c295
For review
DerekMaggio 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.ruff_cache/ | ||
.ruff_cache/ | ||
.logs/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta:__legacy__" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[bdist_wheel] | ||
universal = 1 | ||
|
||
[metadata] | ||
license_files = ../LICENSE | ||
|
||
[pep8] | ||
ignore = E221,E222 | ||
|
||
[aliases] | ||
test=pytest |
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.
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.
Nitpick, feel free to ignore: I might call this
set-performance-metrics-ff
orenable-performance-metrics-ff
.