pub struct NodesStats<'a, 'b> { /* private fields */ }
Expand description
Builder for the Nodes Stats API
Returns statistical information about nodes in the cluster.
Implementations§
Source§impl<'a, 'b> NodesStats<'a, 'b>
impl<'a, 'b> NodesStats<'a, 'b>
Sourcepub fn new(transport: &'a Transport, parts: NodesStatsParts<'b>) -> Self
pub fn new(transport: &'a Transport, parts: NodesStatsParts<'b>) -> Self
Creates a new instance of NodesStats with the specified API parts
Sourcepub fn completion_fields(self, completion_fields: &'b [&'b str]) -> Self
pub fn completion_fields(self, completion_fields: &'b [&'b str]) -> Self
A comma-separated list of fields for fielddata
and suggest
index metric (supports wildcards)
Sourcepub fn error_trace(self, error_trace: bool) -> Self
pub fn error_trace(self, error_trace: bool) -> Self
Include the stack trace of returned errors.
Sourcepub fn fielddata_fields(self, fielddata_fields: &'b [&'b str]) -> Self
pub fn fielddata_fields(self, fielddata_fields: &'b [&'b str]) -> Self
A comma-separated list of fields for fielddata
index metric (supports wildcards)
Sourcepub fn fields(self, fields: &'b [&'b str]) -> Self
pub fn fields(self, fields: &'b [&'b str]) -> Self
A comma-separated list of fields for fielddata
and completion
index metric (supports wildcards)
Sourcepub fn filter_path(self, filter_path: &'b [&'b str]) -> Self
pub fn filter_path(self, filter_path: &'b [&'b str]) -> Self
A comma-separated list of filters used to reduce the response.
Sourcepub fn groups(self, groups: bool) -> Self
pub fn groups(self, groups: bool) -> Self
A comma-separated list of search groups for search
index metric
Sourcepub fn header(self, key: HeaderName, value: HeaderValue) -> Self
pub fn header(self, key: HeaderName, value: HeaderValue) -> Self
Adds a HTTP header
Sourcepub fn include_segment_file_sizes(
self,
include_segment_file_sizes: bool,
) -> Self
pub fn include_segment_file_sizes( self, include_segment_file_sizes: bool, ) -> Self
Whether to report the aggregated disk usage of each one of the Lucene index files (only applies if segment stats are requested)
Sourcepub fn level(self, level: Level) -> Self
pub fn level(self, level: Level) -> Self
Return indices stats aggregated at index, node or shard level
Sourcepub fn request_timeout(self, timeout: Duration) -> Self
pub fn request_timeout(self, timeout: Duration) -> Self
Sets a request timeout for this API call.
The timeout is applied from when the request starts connecting until the response body has finished.
Sourcepub fn source(self, source: &'b str) -> Self
pub fn source(self, source: &'b str) -> Self
The URL-encoded request definition. Useful for libraries that do not accept a request body for non-POST requests.
Trait Implementations§
Source§impl<'a, 'b> Clone for NodesStats<'a, 'b>
impl<'a, 'b> Clone for NodesStats<'a, 'b>
Source§fn clone(&self) -> NodesStats<'a, 'b>
fn clone(&self) -> NodesStats<'a, 'b>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more