mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* MM-25404: Add GetHealthScore metric for the cluster This PR adds the necessary function to the cluster interface so that they can be called from App code. * Add mocks * Remove fakeapp Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
31 lines
1.1 KiB
Go
31 lines
1.1 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package einterfaces
|
|
|
|
import (
|
|
"github.com/mattermost/mattermost-server/v5/model"
|
|
)
|
|
|
|
type ClusterMessageHandler func(msg *model.ClusterMessage)
|
|
|
|
type ClusterInterface interface {
|
|
StartInterNodeCommunication()
|
|
StopInterNodeCommunication()
|
|
RegisterClusterMessageHandler(event string, crm ClusterMessageHandler)
|
|
GetClusterId() string
|
|
IsLeader() bool
|
|
// HealthScore returns a number which is indicative of how well an instance is meeting
|
|
// the soft real-time requirements of the protocol. Lower numbers are better,
|
|
// and zero means "totally healthy".
|
|
HealthScore() int
|
|
GetMyClusterInfo() *model.ClusterInfo
|
|
GetClusterInfos() []*model.ClusterInfo
|
|
SendClusterMessage(cluster *model.ClusterMessage)
|
|
NotifyMsg(buf []byte)
|
|
GetClusterStats() ([]*model.ClusterStats, *model.AppError)
|
|
GetLogs(page, perPage int) ([]string, *model.AppError)
|
|
GetPluginStatuses() (model.PluginStatuses, *model.AppError)
|
|
ConfigChanged(previousConfig *model.Config, newConfig *model.Config, sendToOtherServer bool) *model.AppError
|
|
}
|