Documentation
¶
Overview ¶
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // GitCommit is updated with the Git tag by the Goreleaser build GitCommit = "unknown" // BuildDate is updated with the current ISO timestamp by the Goreleaser build BuildDate = "unknown" // Version is updated with the latest tag by the Goreleaser build Version = "unreleased" )
Functions ¶
Types ¶
type Allocation ¶
type Allocation struct { Enable string `json:"enable,omitempty"` ClusterConcurrentRebalance string `json:"cluster_concurrent_rebalance,omitempty"` NodeConcurrentIncomingRecov string `json:"node_concurrent_incoming_recoveries,omitempty"` NodeConcurrentOutgoingRecov string `json:"node_concurrent_outgoing_recoveries,omitempty"` NodeConcurrentRecov string `json:"node_concurrent_recoveries,omitempty"` NodeInitialPriRecov string `json:"node_initial_primaries_recoveries,omitempty"` Type string `json:"type,omitempty"` Exclude `json:"exclude,omitempty"` }
type CatIndexResp ¶
type CatIndexResp struct { Index string `json:"index"` PrimaryShards string `json:"pri"` ReplicaShards string `json:"rep"` Docs string `json:"docs.count"` DeletedDocs string `json:"docs.deleted"` Date string `json:"creation.date"` PriStoreSize string `json:"pri.store.size"` StoreSize string `json:"store.size"` }
type IndexSettings ¶
type IndexSettings struct {
Index `json:"index"`
}
type IndexStats ¶
type IndexStats struct {
ShardStats `json:"shard_stats"`
}
type IndexVersion ¶
type IndexVersion struct {
Created string `json:"created_string"`
}
type LastSuccess ¶
type LastSuccess struct {
Snapshot string `json:"snapshot_name"`
}
type Routing ¶
type Routing struct {
Allocation `json:"allocation,omitempty"`
}
type ShardStats ¶
type ShardStats struct {
Total int `json:"total_count"`
}
type WaterMarksResp ¶
type WaterMarksResp struct { SingleDataNode string `json:"cluster.routing.allocation.disk.watermark.enable_for_single_data_node"` FloodStage string `json:"cluster.routing.allocation.disk.watermark.flood_stage"` FloodStageFrozen string `json:"cluster.routing.allocation.disk.watermark.flood_stage.frozen"` FloodStageFrozenMaxHeadRoom string `json:"cluster.routing.allocation.disk.watermark.flood_stage.frozen.max_headroom"` FloodStageMaxHeadRoom string `json:"cluster.routing.allocation.disk.watermark.flood_stage.max_headroom"` High string `json:"cluster.routing.allocation.disk.watermark.high"` HighMaxHeadRoom string `json:"cluster.routing.allocation.disk.watermark.high.max_headroom"` Low string `json:"cluster.routing.allocation.disk.watermark.low"` LowMaxHeadRoom string `json:"cluster.routing.allocation.disk.watermark.low.max_headroom"` }
Click to show internal directories.
Click to hide internal directories.