Class ClusterStatsRequestParameters
Request options for Stats
https://opensearch.org/docs/latest/api-reference/cluster-api/cluster-stats/
Implements
Inherited Members
Namespace: OpenSearch .Net.Specification.ClusterApi
Assembly: OpenSearch.Net.dll
Syntax
public class ClusterStatsRequestParameters : RequestParameters<ClusterStatsRequestParameters>, IRequestParameters
Properties
| Edit this page View SourceDefaultHttpMethod
Declaration
public override HttpMethod DefaultHttpMethod { get; }
Property Value
Type | Description |
---|---|
Http |
Overrides
| Edit this page View SourceFlatSettings
Whether to return settings in the flat form, which can improve readability, especially for heavily nested settings. For example, the flat
form of "cluster": { "max_shards_per_node": 500 }
is "cluster.max_shards_per_node": "500"
.
Declaration
public bool? FlatSettings { get; set; }
Property Value
Type | Description |
---|---|
bool? |
SupportsBody
Declaration
public override bool SupportsBody { get; }
Property Value
Type | Description |
---|---|
bool |
Overrides
| Edit this page View SourceTimeout
The amount of time to wait for each node to respond. If a node does not respond before its timeout expires, the response does not include
its stats. However, timed out nodes are included in the response's _nodes.failed
property. Defaults to no timeout.
Declaration
public TimeSpan Timeout { get; set; }
Property Value
Type | Description |
---|---|
Time |