Files
mattermost/model/cluster_stats.go
Haardik Dharma a3db701ccc Update cluster_stats.go (#16483)
Automatic Merge
2020-12-10 15:45:17 +01:00

28 lines
667 B
Go

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package model
import (
"encoding/json"
"io"
)
type ClusterStats struct {
Id string `json:"id"`
TotalWebsocketConnections int `json:"total_websocket_connections"`
TotalReadDbConnections int `json:"total_read_db_connections"`
TotalMasterDbConnections int `json:"total_master_db_connections"`
}
func (cs *ClusterStats) ToJson() string {
b, _ := json.Marshal(cs)
return string(b)
}
func ClusterStatsFromJson(data io.Reader) *ClusterStats {
var cs *ClusterStats
json.NewDecoder(data).Decode(&cs)
return cs
}