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

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

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

origin: org.elasticsearch/elasticsearch

/**
 * Should the node OS stats be returned.
 */
public NodesStatsRequestBuilder setProcess(boolean process) {
  request.process(process);
  return this;
}
origin: com.strapdata.elasticsearch/elasticsearch

/**
 * Should the node OS stats be returned.
 */
public NodesStatsRequestBuilder setProcess(boolean process) {
  request.process(process);
  return this;
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

/**
 * Should the node OS stats be returned.
 */
public NodesStatsRequestBuilder setProcess(boolean process) {
  request.process(process);
  return this;
}
origin: apache/servicemix-bundles

/**
 * Should the node OS stats be returned.
 */
public NodesStatsRequestBuilder setProcess(boolean process) {
  request.process(process);
  return this;
}
origin: harbby/presto-connectors

/**
 * Should the node OS stats be returned.
 */
public NodesStatsRequestBuilder setProcess(boolean process) {
  request.process(process);
  return this;
}
origin: javanna/elasticshell

public NodesStatsRequestBuilder<JsonInput, JsonOutput> process(boolean process) {
  request.process(process);
  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: harbby/presto-connectors

@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());
}
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: harbby/presto-connectors

nodesStatsRequest.http(metrics.contains("http"));
nodesStatsRequest.indices(metrics.contains("indices"));
nodesStatsRequest.process(metrics.contains("process"));
nodesStatsRequest.breaker(metrics.contains("breaker"));
nodesStatsRequest.script(metrics.contains("script"));
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.statsNodesStatsRequestprocess

Javadoc

Should the node Process 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.
  • 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.
  • readFrom
  • breaker,
  • readFrom,
  • script,
  • timeout,
  • writeTo,
  • discovery,
  • ingest,
  • adaptiveSelection,
  • nodesIds

Popular in Java

  • Making http post requests using okhttp
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (Timer)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • Top Sublime Text 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