-
Notifications
You must be signed in to change notification settings - Fork 383
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
[doc] Documentation for parse JSON output #3519
Conversation
docs/analyzer/user_guide.md
Outdated
- `checker_name` (str): identifier of the rule (checker) that was evaluated | ||
to produce the result. | ||
- `severity` (str | null): CodeChecker severity level (optional). | ||
- `report_hash` (str | null): unique report identifier (optional). |
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.
- `report_hash` (str | null): unique report identifier (optional). | |
- `report_hash` (str | null): bug identifier hash (optional). |
I think we should use the word "report" to an entity which belongs an entry in the "reports" table. In this sense multiple reports can have the same report_hash
. So I think this hash doesn't identify a report, but the bug uniquely. This distinction may not be important for a user who is browsing the findings, but can be important for someone who consumes a JSON output in order to see that multiple reports may have the same hash.
7130f09
to
141e1eb
Compare
- `message` (str): message reported by the checker. | ||
- `checker_name` (str): identifier of the rule (checker) that was evaluated | ||
to produce the result. | ||
- `severity` (str | null): CodeChecker severity level (optional). |
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.
Can you list in the docs, what are the possible values of severity? It's useful in order to filter severities > LOW for example. That was trivial when severity was numeric.
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.
Done: #3604
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.
Awesome, thanks!
No description provided.