如何使用 SolrJ 从我的 Solr 服务器检索指标?

How can I retrieve the metrics from my Solr server using SolrJ?

我们是 运行 Solr 8.4 和 SolrJ 8.4。我可以使用 curl 成功检索大约 18K 行指标:curl 'http://localhost:1080/MySolr/admin/metrics'。如何使用 SolrJ 检索相同的指标?

我无法在 Solr 或 SolrJ 文档中找到关于此的任何信息。

感谢任何帮助。

您明确使用 CommonParams.QT 参数将查询路径更改为任何值。

query.setParam(CommonParams.QT, "/admin/metrics"); 

这使您可以对特定核心名称下的路径进行自定义查询。