mirror of https://github.com/apache/lucene.git
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:
parent
7ee772616f
commit
e8b0fe4193
|
@ -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
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
|
@ -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']
|
||||||
|
|
Loading…
Reference in New Issue