You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Ramkumar Aiyengar (JIRA)" <ji...@apache.org> on 2013/11/25 14:35:35 UTC

[jira] [Created] (SOLR-5500) Fix /admin/mbeans?wt=json output

Ramkumar Aiyengar created SOLR-5500:
---------------------------------------

             Summary: Fix /admin/mbeans?wt=json output
                 Key: SOLR-5500
                 URL: https://issues.apache.org/jira/browse/SOLR-5500
             Project: Solr
          Issue Type: Improvement
    Affects Versions: 4.5, 4.4, 4.3
            Reporter: Ramkumar Aiyengar
            Priority: Minor
         Attachments: SOLR-5500.patch

The current {{solr-mbeans}} outputs a list of category / category values. This is better represented as an object.

{code}
  ...
  "solr-mbeans": [
    "CACHE",
    "queryResultCache" : {
      "class": "org.apache.solr.search.LRUCache",
  ...
{code}

Change this to:

{code}
...
  "solr-mbeans": {
    "CACHE": {
      "queryResultCache": {
        "class": "org.apache.solr.search.LRUCache",
...
{code}




--
This message was sent by Atlassian JIRA
(v6.1#6144)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org