Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
64 lines
2.0 KiB
Go
64 lines
2.0 KiB
Go
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
// The OpenSearch Contributors require contributions made to
|
|
// this file be licensed under the Apache-2.0 license or a
|
|
// compatible open source license.
|
|
|
|
package opensearchapi
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/opensearch-project/opensearch-go/v4"
|
|
)
|
|
|
|
// CatHealthReq represent possible options for the /_cat/health request
|
|
type CatHealthReq struct {
|
|
Header http.Header
|
|
Params CatHealthParams
|
|
}
|
|
|
|
// GetRequest returns the *http.Request that gets executed by the client
|
|
func (r CatHealthReq) GetRequest() (*http.Request, error) {
|
|
return opensearch.BuildRequest(
|
|
"GET",
|
|
"/_cat/health",
|
|
nil,
|
|
r.Params.get(),
|
|
r.Header,
|
|
)
|
|
}
|
|
|
|
// CatHealthResp represents the returned struct of the /_cat/health response
|
|
type CatHealthResp struct {
|
|
Health []CatHealthItemResp
|
|
response *opensearch.Response
|
|
}
|
|
|
|
// CatHealthItemResp represents one index of the CatHealthResp
|
|
type CatHealthItemResp struct {
|
|
Epoch int `json:"epoch,string"`
|
|
Timestamp string `json:"timestamp"`
|
|
Cluster string `json:"cluster"`
|
|
Status string `json:"status"`
|
|
NodeTotal int `json:"node.total,string"`
|
|
NodeData int `json:"node.data,string"`
|
|
DiscoveredMaster bool `json:"discovered_master,string"`
|
|
DiscoveredClusterManager bool `json:"discovered_cluster_manager,string"`
|
|
Shards int `json:"shards,string"`
|
|
Primary int `json:"pri,string"`
|
|
Relocating int `json:"relo,string"`
|
|
Initializing int `json:"init,string"`
|
|
Unassigned int `json:"unassign,string"`
|
|
PendingTasks int `json:"pending_tasks,string"`
|
|
MaxTaskWaitTime string `json:"max_task_wait_time"`
|
|
ActiveShardsPercent string `json:"active_shards_percent"`
|
|
}
|
|
|
|
// Inspect returns the Inspect type containing the raw *opensearch.Reponse
|
|
func (r CatHealthResp) Inspect() Inspect {
|
|
return Inspect{
|
|
Response: r.response,
|
|
}
|
|
}
|