Tabnine Logo
NodesStatsRequest.ingest
Code IndexAdd Tabnine to your IDE (free)

How to use
ingest
method
in
org.elasticsearch.action.admin.cluster.node.stats.NodesStatsRequest

Best Java code snippets using org.elasticsearch.action.admin.cluster.node.stats.NodesStatsRequest.ingest (Showing top 8 results out of 315)

origin: org.elasticsearch/elasticsearch

/**
 * Should ingest statistics be returned.
 */
public NodesStatsRequestBuilder setIngest(boolean ingest) {
  request.ingest(ingest);
  return this;
}
origin: com.strapdata.elasticsearch/elasticsearch

  /**
   * Should ingest statistics be returned.
   */
  public NodesStatsRequestBuilder ingest(boolean ingest) {
    request.ingest(ingest);
    return this;
  }
}
origin: apache/servicemix-bundles

/**
 * Should ingest statistics be returned.
 */
public NodesStatsRequestBuilder setIngest(boolean ingest) {
  request.ingest(ingest);
  return this;
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

/**
 * Should ingest statistics be returned.
 */
public NodesStatsRequestBuilder setIngest(boolean ingest) {
  request.ingest(ingest);
  return this;
}
origin: org.elasticsearch/elasticsearch

@Override
protected NodeStats nodeOperation(NodeStatsRequest nodeStatsRequest) {
  NodesStatsRequest request = nodeStatsRequest.request;
  return nodeService.stats(request.indices(), request.os(), request.process(), request.jvm(), request.threadPool(),
      request.fs(), request.transport(), request.http(), request.breaker(), request.script(), request.discovery(),
      request.ingest(), request.adaptiveSelection());
}
origin: com.strapdata.elasticsearch/elasticsearch

@Override
protected NodeStats nodeOperation(NodeStatsRequest nodeStatsRequest) {
  NodesStatsRequest request = nodeStatsRequest.request;
  return nodeService.stats(request.indices(), request.os(), request.process(), request.jvm(), request.threadPool(),
      request.fs(), request.transport(), request.http(), request.breaker(), request.script(), request.discovery(),
      request.ingest());
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

@Override
protected NodeStats nodeOperation(NodeStatsRequest nodeStatsRequest) {
  NodesStatsRequest request = nodeStatsRequest.request;
  return nodeService.stats(request.indices(), request.os(), request.process(), request.jvm(), request.threadPool(),
      request.fs(), request.transport(), request.http(), request.breaker(), request.script(), request.discovery(),
      request.ingest(), request.adaptiveSelection());
}
origin: apache/servicemix-bundles

@Override
protected NodeStats nodeOperation(NodeStatsRequest nodeStatsRequest) {
  NodesStatsRequest request = nodeStatsRequest.request;
  return nodeService.stats(request.indices(), request.os(), request.process(), request.jvm(), request.threadPool(),
      request.fs(), request.transport(), request.http(), request.breaker(), request.script(), request.discovery(),
      request.ingest(), request.adaptiveSelection());
}
org.elasticsearch.action.admin.cluster.node.statsNodesStatsRequestingest

Javadoc

Should ingest statistics be returned.

Popular methods of NodesStatsRequest

  • <init>
    Get stats from nodes based on the nodes ids specified. If none are passed, stats for all nodes will
  • all
    Sets all the request flags.
  • clear
    Clears all the request flags.
  • fs
    Should the node file system stats be returned.
  • http
    Should the node HTTP be returned.
  • indices
    Should indices stats be returned.
  • jvm
    Should the node JVM be returned.
  • os
    Should the node OS be returned.
  • process
    Should the node Process be returned.
  • threadPool
    Should the node Thread Pool be returned.
  • transport
    Should the node Transport be returned.
  • breaker
    Should the node's circuit breaker stats be returned.
  • transport,
  • breaker,
  • readFrom,
  • script,
  • timeout,
  • writeTo,
  • discovery,
  • adaptiveSelection,
  • nodesIds

Popular in Java

  • Finding current android device location
  • setRequestProperty (URLConnection)
  • addToBackStack (FragmentTransaction)
  • putExtra (Intent)
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • BoxLayout (javax.swing)
  • JTextField (javax.swing)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now