Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LogAttributes ¶
type LogAttributes struct {
Program string `json:"program"`
Level string `json:"level"`
Message string `json:"message"`
Date string `json:"date"`
}
func GetSystemLogList ¶
func GetSystemLogList(ac *client.AlpaconClient, serverName string, pageSize int) ([]LogAttributes, error)
type LogEntry ¶
type LogEntry struct {
ID int `json:"id"`
AddedAt time.Time `json:"added_at"`
Date time.Time `json:"date"`
Program string `json:"program"`
Level int `json:"level"`
Name string `json:"name"`
Path string `json:"path"`
LineNo int `json:"lineno"`
PID int `json:"pid"`
TID int `json:"tid"`
Process string `json:"process"`
Thread string `json:"thread"`
Msg string `json:"msg"`
Server string `json:"server"`
ServerName string `json:"server_name"`
}
Click to show internal directories.
Click to hide internal directories.