SOLR-7334: Admin UI does not show Num Docs and Deleted Docs

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1671147 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Timothy Potter 2015-04-03 20:03:34 +00:00
parent 7ee772616f
commit e8b0fe4193
2 changed files with 4 additions and 2 deletions

View File

@ -387,6 +387,8 @@ Bug Fixes
* SOLR-7266: The IgnoreCommitOptimizeUpdateProcessor blocks commit requests from * SOLR-7266: The IgnoreCommitOptimizeUpdateProcessor blocks commit requests from
replicas needing to recover. (Jessica Cheng Mallet, Timothy Potter) replicas needing to recover. (Jessica Cheng Mallet, Timothy Potter)
* SOLR-7334: Admin UI does not show "Num Docs" and "Deleted Docs". (Erick Erickson, Timothy Potter)
Optimizations Optimizations
---------------------- ----------------------

View File

@ -111,10 +111,10 @@ sammy.get
.show(); .show();
var data = { var data = {
'index_num-docs' : response['index']['numDocs'], 'index_num-doc' : response['index']['numDocs'],
'index_heap-usage-bytes' : response['index']['indexHeapUsageBytes'], 'index_heap-usage-bytes' : response['index']['indexHeapUsageBytes'],
'index_max-doc' : response['index']['maxDoc'], 'index_max-doc' : response['index']['maxDoc'],
'index_deleted-docs' : response['index']['deletedDocs'], 'index_deleted-doc' : response['index']['deletedDocs'],
'index_version' : response['index']['version'], 'index_version' : response['index']['version'],
'index_segmentCount' : response['index']['segmentCount'], 'index_segmentCount' : response['index']['segmentCount'],
'index_last-modified' : response['index']['lastModified'] 'index_last-modified' : response['index']['lastModified']