codecamp

MBean请求处理程序

MBean请求处理程序提供对管理 UI 的插件/统计(Plugin/Stats)页上提供的信息的编程访问。

MBean请求处理程序接受以下参数:

  • key

    通过对象键来限制结果。

  • cat

    按类别名称限制结果。

  • stats

    指定是否使用结果返回统计信息。您可以在每个字段的基础上覆盖stats参数。默认是false

  • wt

    输出格式。这与查询中的wt参数操作相同。默认是json

MBeanRequestHandler示例

以下示例假设您正在运行Solr的techproducts示例配置:

bin/solr start -e techproducts

仅返回有关CACHE类别的信息:

http://localhost:8983/solr/techproducts/admin/mbeans?cat=CACHE

要仅返回有关CACHE类别的信息和统计信息,请使用XML格式:

http://localhost:8983/solr/techproducts/admin/mbeans?stats=true&cat=CACHE&wt=xml

返回所有内容的信息, 除 fieldCache 之外的所有内容的统计:

http://localhost:8983/solr/techproducts/admin/mbeans?stats=true&f.fieldCache.stats=false

仅返回 fieldCache 的信息和统计:

http://localhost:8983/solr/techproducts/admin/mbeans?key=fieldCache&stats=true
在Solr中使用JMX
Solr性能统计参考
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

SolrCloud

SolrCloud配置和参数

如何使用AsciiDoc

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }