Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我们配置项目的屏幕,SonarQube 显示打开的新问题,确认以黄色突出显示,我在我的应用程序中使用 SonarQube API 并希望将数据转储到我的数据库。因此,我将创建报告。但是在 Sonar Metrics 文档中,我找不到如何使用 API 获得这些值。
api/issues/search应该为您提供所需的一切。查看嵌入在 SonarQube 服务器中的文档(链接在页脚)。
api/issues/search
根据您描述的用例,参数sinceLeakPeriod或createdAfter / createdInLast可以帮助进行日期过滤。更不用说其他过滤器,如resolved和componentKeys。WebAPI 文档中有详尽的清单。