-
Notifications
You must be signed in to change notification settings - Fork 388
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
Run history command #1500
Run history command #1500
Conversation
|
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.
I would vote for history
in the command line.
docs/user_guide.md
Outdated
@@ -1336,6 +1337,34 @@ usage: CodeChecker cmd runs [-h] [--url PRODUCT_URL] | |||
List the analysis runs available on the server. | |||
~~~~~~~~~~~~~~~~~~~~~ | |||
|
|||
### <a name="cmd-run-history"></a> List of run history (`run-history`) | |||
|
|||
With this command you can list out the specific run events which happened during |
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.
maybe storage events
instead of run events
?
docs/user_guide.md
Outdated
usage: CodeChecker cmd run-history [-h] [-n [RUN_NAME [RUN_NAME ...]]] | ||
[--url PRODUCT_URL] | ||
[-o {plaintext,html,rows,table,csv,json}] | ||
[-e EXPORT_DIR] [-c] |
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.
why do we need the -e EXPORT_DIR
here? Is the html output supported?
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.
@gyorb I will fix that in a separate pull request because this problem related to multiple command line commands: products list
, runs
, sum
etc.
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.
I have removed the html output from here and I have created a separate pull request (#1515) to fix this problem for other commands.
3d45f09
to
9449d2a
Compare
Creates a separate command to get run history of multiple runs.
9449d2a
to
46b0367
Compare
Creates a separate command to get run history of multiple runs.
Closes #1485