...
| Use Case | Example Request |
|---|---|
| Get all the projects | |
| For each project, get lines of code and code coverage measures | |
| Get lines of code and code coverage measures for project org.codehaus.sonar:sonar | GET http://nemo.sonarsource.org/api/resources?resource=org.codehaus.sonar:sonar&metrics=ncloc,coverage |
| Get all the resources included in project org.codehaus.sonar:sonar: packages, files, etc. | GET http://nemo.sonarsource.org/api/resources?resource=org.codehaus.sonar:sonar&depth=-1 |
| Get all the files included in project org.codehaus.sonar:sonar |
|
| Hotspot of the ten files with the worst code coverage for project org.codehaus.sonar:sonar |
|
| Get lines of code measure of direct children of org.codehaus.sonar:sonar |
|
| Get code coverage on new code for project org.codehaus.sonar:sonar for all differential periods. | GET http://nemo.sonarsource.org/api/resources?resource=org.codehaus.sonar:sonar&metrics=new_coverage&includetrends=true |
Response Format
| Code Block | ||||
|---|---|---|---|---|
| ||||
[
{
"id":2865,
"key":"org.codehaus.sonar:sonar",
"name":"Sonar",
"scope":"PRJ",
"qualifier":"TRK",
"date":"2012-08-10T04:03:51+0200",
"lname":"Sonar",
"lang":"java",
"version":"3.3-SNAPSHOT",
"description":"Open source platform for continuous inspection of code quality",
"p1":"previous_analysis",
"p1p":"2012-08-09",
"p1d":"2012-08-09T04:04:01+0200",
"p2":"days","p2p":"7",
"p2d":"2012-08-03T04:03:51+0200",
...
"msr":[
{
"key":"coverage",
"val":70.3,
"frmt_val":"70.3%",
"alert":null,
"alert_text":null,
"trend":0,
"var":0,
"var1":0.0,
"var2":0.0,
...
},
...
]
}
] |
| Info | ||
|---|---|---|
| ||
Note that the number of results is limited to 500. See SONAR-2920. |
Parameters
Parameter | Description | Required | Default Value | Example Values |
|---|---|---|---|---|
resource | id or key of the resource | No | None | org.codehaus.sonar:sonar |
metrics | Comma-separated list of metric keys/ids. | No | None | lines,blocker_violations |
depth | Used only when resource is set.
| No | 0 | -1 |
scopes | Comma-separated list of scopes:
| No | None | PRJ,DIR |
qualifiers | Comma-separated list of qualifiers:
| No | None | TRK,BRC |
| languages | Comma-separated list of language keys. | No | None | java,js |
verbose | Add some data to response. | No | false | true |
limit | Limit the number of results. Only used if one metric, and only one, is set. | No | None | 10 |
includetrends | Include trends and period variations in response: add <trend> (1 if better, else worse), <var> (1 if measure value increases) and nodes <p*> for period variations. | No | false | true |
includealerts | Include alerts data: add nodes <alert> (ERROR, WARN, OK) and <alert_text> | No | false | true |
rules | Filter on rules: setting it to true will return rules id and rule name for measure having such info (such as 'blocker_violations', 'critical_violations', ..., 'new_blocker_violations', ...) | No | false | true |
rule_priorities | Filter on rule priority: setting it to true or to a list of priorities (BLOCKER, CRITICAL, MAJOR, MINOR, INFO) will return measures having such info (such as 'blocker_violations', 'critical_violations', ..., 'new_blocker_violations', ...). | No | false | BLOCKER,CRITICAL |
| format | Response formats.Possible values: json | xml format can be set through:
If nothing is set, json is used. | No | None | json |

