|
@@ -250,6 +250,15 @@ public class RestIndicesAction extends AbstractCatAction {
|
|
|
table.addCell("search.query_total", "sibling:pri;alias:sqto,searchQueryTotal;default:false;text-align:right;desc:total query phase ops");
|
|
|
table.addCell("pri.search.query_total", "default:false;text-align:right;desc:total query phase ops");
|
|
|
|
|
|
+ table.addCell("search.scroll_current", "sibling:pri;alias:scc,searchScrollCurrent;default:false;text-align:right;desc:open scroll contexts");
|
|
|
+ table.addCell("pri.search.scroll_current", "default:false;text-align:right;desc:open scroll contexts");
|
|
|
+
|
|
|
+ table.addCell("search.scroll_time", "sibling:pri;alias:scti,searchScrollTime;default:false;text-align:right;desc:time scroll contexts held open");
|
|
|
+ table.addCell("pri.search.scroll_time", "default:false;text-align:right;desc:time scroll contexts held open");
|
|
|
+
|
|
|
+ table.addCell("search.scroll_total", "sibling:pri;alias:scto,searchScrollTotal;default:false;text-align:right;desc:completed scroll contexts");
|
|
|
+ table.addCell("pri.search.scroll_total", "default:false;text-align:right;desc:completed scroll contexts");
|
|
|
+
|
|
|
table.addCell("segments.count", "sibling:pri;alias:sc,segmentsCount;default:false;text-align:right;desc:number of segments");
|
|
|
table.addCell("pri.segments.count", "default:false;text-align:right;desc:number of segments");
|
|
|
|
|
@@ -449,6 +458,15 @@ public class RestIndicesAction extends AbstractCatAction {
|
|
|
table.addCell(indexStats == null ? null : indexStats.getTotal().getSearch().getTotal().getQueryCount());
|
|
|
table.addCell(indexStats == null ? null : indexStats.getPrimaries().getSearch().getTotal().getQueryCount());
|
|
|
|
|
|
+ table.addCell(indexStats == null ? null : indexStats.getTotal().getSearch().getTotal().getScrollCurrent());
|
|
|
+ table.addCell(indexStats == null ? null : indexStats.getPrimaries().getSearch().getTotal().getScrollCurrent());
|
|
|
+
|
|
|
+ table.addCell(indexStats == null ? null : indexStats.getTotal().getSearch().getTotal().getScrollTime());
|
|
|
+ table.addCell(indexStats == null ? null : indexStats.getPrimaries().getSearch().getTotal().getScrollTime());
|
|
|
+
|
|
|
+ table.addCell(indexStats == null ? null : indexStats.getTotal().getSearch().getTotal().getScrollCount());
|
|
|
+ table.addCell(indexStats == null ? null : indexStats.getPrimaries().getSearch().getTotal().getScrollCount());
|
|
|
+
|
|
|
table.addCell(indexStats == null ? null : indexStats.getTotal().getSegments().getCount());
|
|
|
table.addCell(indexStats == null ? null : indexStats.getPrimaries().getSegments().getCount());
|
|
|
|