声纳从多个声纳实例收集数据
我想知道声纳是否有能力从其他声纳收集代码指标数据。
我想要实现的目标是假设有 10 个声纳在 10 台不同的机器上运行。
我的机器上运行着一个声纳,它可以从所有其他 10 个声纳中提取数据并显示相同的数据。所以,我不需要检查每个单独的声纳。
感谢任何相关信息或帮助。
I would like to know if there is capability in Sonar to collect Code Metrics data from other sonar.
The thing I would like to achieve is that say suppose there are 10 sonars running on 10 different machine.
And I have a sonar running on my machine which would pull the data from all the other 10 sonars and display the same. So, that I don’t need to check each individual sonar.
Appreciate any information or help on the same.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你好
您应该在声纳用户邮件列表上询问这个问题: http://www.sonarsource.org/support/也许
我没有正确理解你的问题,但我认为你可以通过使用单个声纳实例、运行 build & 来解决你的问题。 10 台不同机器上的分析过程。
在我的公司,就像在许多其他公司一样,我们使用 hudson/jenkins 在许多不同的机器上安排声纳分析。每个哈德森节点将在同一个声纳数据库上注入质量测量值。使用 sonar hudson/jenkins 插件可以轻松完成此操作。
希望有帮助
Hello
You should rather ask this question on sonar user mailing list: http://www.sonarsource.org/support/support/
Maybe I did not understood correctly your question but I think you can solve your problem by using a single sonar instance, running build & analysis processes on 10 different machines.
In my company, like in many others, we are using hudson/jenkins to schedule sonar analysis on many different machines. Each hudson node will inject quality measures on the same single sonar database. This is done easily using sonar hudson/jenkins plugin.
Hope it helps
使用webservice api接口怎么样?
http://docs.sonarqube.org/display/SONAR/Web+Service+API
http:// server-address:9000 / ...
... /api/resources - 所有项目
... /api/metrics - 所有指标
...
似乎并不太困难,
所以在 java 中获取 请参阅 http://docs.sonarqube.org/display/SONAR/Using+the+Web+Service+Java+client
What about using the webservice api interface?
http://docs.sonarqube.org/display/SONAR/Web+Service+API
http:// server-address:9000 / ...
... /api/resources - all projects
... /api/metrics - all metrics
...
so it does not seem too difficult
for fetching in java see http://docs.sonarqube.org/display/SONAR/Using+the+Web+Service+Java+client