Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CreateLogEntryRequest ¶
type GetLogEntriesResponse ¶
type GetLogEntriesResponse struct {
Count int `json:"count"`
LogEntries LogEntryCollection `json:"logEntries"`
PageSize int `json:"pageSize"`
TotalCount int `json:"totalCount"`
}
type LogEntry ¶
type LogEntry struct {
Application string `json:"application" bson:"application"`
Details LogEntryDetailItemCollection `json:"details" bson:"details"`
ID bson.ObjectId `json:"id" bson:"_id"`
Level string `json:"level" bson:"level"`
Message string `json:"message" bson:"message"`
Time time.Time `json:"time" bson:"time"`
}
type LogEntryCollection ¶
type LogEntryCollection []*LogEntry
type LogEntryDetailItem ¶
type LogEntryDetailItemCollection ¶
type LogEntryDetailItemCollection []*LogEntryDetailItem
Click to show internal directories.
Click to hide internal directories.