Struct elasticsearch::indices::IndicesStats
source · [−]pub struct IndicesStats<'a, 'b> { /* private fields */ }
Expand description
Builder for the Indices Stats API
Provides statistics on operations happening in an index.
Implementations
sourceimpl<'a, 'b> IndicesStats<'a, 'b>
impl<'a, 'b> IndicesStats<'a, 'b>
sourcepub fn new(transport: &'a Transport, parts: IndicesStatsParts<'b>) -> Self
pub fn new(transport: &'a Transport, parts: IndicesStatsParts<'b>) -> Self
Creates a new instance of IndicesStats 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 expand_wildcards(self, expand_wildcards: &'b [ExpandWildcards]) -> Self
pub fn expand_wildcards(self, expand_wildcards: &'b [ExpandWildcards]) -> Self
Whether to expand wildcard expression to concrete indices that are open, closed or both.
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 forbid_closed_indices(self, forbid_closed_indices: bool) -> Self
pub fn forbid_closed_indices(self, forbid_closed_indices: bool) -> Self
If set to false stats will also collected from closed indices if explicitly specified or if expand_wildcards expands to closed indices
sourcepub fn groups(self, groups: &'b [&'b str]) -> Self
pub fn groups(self, groups: &'b [&'b str]) -> 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 include_unloaded_segments(self, include_unloaded_segments: bool) -> Self
pub fn include_unloaded_segments(self, include_unloaded_segments: bool) -> Self
If set to true segment stats will include stats for segments that are not currently loaded into memory
sourcepub fn level(self, level: Level) -> Self
pub fn level(self, level: Level) -> Self
Return stats aggregated at cluster, index 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
sourceimpl<'a, 'b> Clone for IndicesStats<'a, 'b>
impl<'a, 'b> Clone for IndicesStats<'a, 'b>
sourcefn clone(&self) -> IndicesStats<'a, 'b>
fn clone(&self) -> IndicesStats<'a, 'b>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl<'a, 'b> !RefUnwindSafe for IndicesStats<'a, 'b>
impl<'a, 'b> Send for IndicesStats<'a, 'b>
impl<'a, 'b> Sync for IndicesStats<'a, 'b>
impl<'a, 'b> Unpin for IndicesStats<'a, 'b>
impl<'a, 'b> !UnwindSafe for IndicesStats<'a, 'b>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more