Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateDBManager ¶
func GetServiceAliasID ¶
python: new_word = str(ord(string[10])) + string + str(ord(string[3])) + 'log' + str(ord(string[2]) / 7) new_id = hashlib.sha224(new_word).hexdigest()[0:16]
Types ¶
type ClusterMessage ¶
type ClusterMessage struct { Data []byte Mode ClusterMessageType }
type ClusterMessageType ¶
type ClusterMessageType string
const ( //EventMessage 操作日志共享 EventMessage ClusterMessageType = "event_log" //ServiceMonitorMessage 业务监控数据消息 ServiceMonitorMessage ClusterMessageType = "monitor_message" //ServiceNewMonitorMessage 新业务监控数据消息 ServiceNewMonitorMessage ClusterMessageType = "new_monitor_message" //MonitorMessage 节点监控数据 MonitorMessage ClusterMessageType = "monitor" )
type EventLogMessage ¶
type EventLogMessage struct { EventID string `json:"event_id"` Step string `json:"step"` Status string `json:"status"` Message string `json:"message"` Level string `json:"level"` Time string `json:"time"` Content []byte `json:"-"` //monitor消息使用 MonitorData []byte `json:"monitorData,omitempty"` }
EventLogMessage 事件日志实体
type Manager ¶
type Manager interface { SaveMessage([]*EventLogMessage) error Close() error }
type MonitorData ¶
Click to show internal directories.
Click to hide internal directories.