Codota Logo
NodesStatsRequest.http
Code IndexAdd Codota to your IDE (free)

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

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

  • Common ways to obtain NodesStatsRequest
private void myMethod () {
NodesStatsRequest n =
  • Codota Iconnew NodesStatsRequest()
  • Codota IconString[] nodesIds;new NodesStatsRequest(nodesIds)
  • Smart code suggestions by Codota
}
origin: org.elasticsearch/elasticsearch

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

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

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

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

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

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

nodesStatsRequest.fs(metrics.contains("fs"));
nodesStatsRequest.transport(metrics.contains("transport"));
nodesStatsRequest.http(metrics.contains("http"));
nodesStatsRequest.indices(metrics.contains("indices"));
nodesStatsRequest.process(metrics.contains("process"));
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: 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());
}
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());
}
org.elasticsearch.action.admin.cluster.node.statsNodesStatsRequesthttp

Javadoc

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

Popular in Java

  • Making http requests using okhttp
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getSupportFragmentManager (FragmentActivity)
    Return the FragmentManager for interacting with fragments associated with this activity.
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • URLConnection (java.net)
    The abstract class URLConnection is the superclass of all classes that represent a communications li
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • JButton (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now