Package org.elasticsearch.rest.action.admin.indices.status

Examples of org.elasticsearch.rest.action.admin.indices.status.RestIndicesStatusAction


    RestController controller = new RestController(settings);
    healthAction = new RestClusterHealthAction(settings, client, controller);
    stateAction = new RestClusterStateAction(settings, client, controller, settingsFilter);
    nodesInfoAction = new RestNodesInfoAction(settings, client, controller, settingsFilter);
    nodesStatsAction = new RestNodesStatsAction(settings, client, controller);
    indicesStatusAction = new RestIndicesStatusAction(settings, client, controller, settingsFilter);
    indicesStatsAction = new RestIndicesStatsAction(settings, client, controller);
    indicesSegmentsAction = new RestIndicesSegmentsAction(settings, client, controller);
  }
View Full Code Here

TOP

Related Classes of org.elasticsearch.rest.action.admin.indices.status.RestIndicesStatusAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.