Documentation ¶
Index ¶
- Constants
- type Audit
- func (a *Audit) Configure(cfg mlog.LoggerConfiguration) error
- func (a *Audit) Flush() error
- func (a *Audit) Init(maxQueueSize int)
- func (a *Audit) Log(level mlog.Level, path string, evt string, status string, userID string, ...)
- func (a *Audit) LogRecord(level mlog.Level, rec Record)
- func (a *Audit) Shutdown() error
- type FuncMetaTypeConv
- type Meta
- type Record
Constants ¶
View Source
const ( DefMaxQueueSize = 1000 KeyAPIPath = "api_path" KeyEvent = "event" KeyStatus = "status" KeyUserID = "user_id" KeySessionID = "session_id" KeyClient = "client" KeyIPAddress = "ip_address" KeyClusterID = "cluster_id" Success = "success" Attempt = "attempt" Fail = "fail" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Audit ¶
type Audit struct { // OnQueueFull is called on an attempt to add an audit record to a full queue. // Return true to drop record, or false to block until there is room in queue. OnQueueFull func(qname string, maxQueueSize int) bool // OnError is called when an error occurs while writing an audit record. OnError func(err error) // contains filtered or unexported fields }
func (*Audit) Configure ¶
func (a *Audit) Configure(cfg mlog.LoggerConfiguration) error
Configure sets zero or more target to output audit logs to.
func (*Audit) Log ¶
func (a *Audit) Log(level mlog.Level, path string, evt string, status string, userID string, sessionID string, meta Meta)
Log emits an audit record based on minimum required info.
type FuncMetaTypeConv ¶
type FuncMetaTypeConv func(val interface{}) (newVal interface{}, converted bool)
FuncMetaTypeConv defines a function that can convert meta data types into something that serializes well for audit records.
type Meta ¶
type Meta map[string]interface{}
Meta represents metadata that can be added to a audit record as name/value pairs.
type Record ¶
type Record struct { APIPath string Event string Status string UserID string SessionID string Client string IPAddress string Meta Meta // contains filtered or unexported fields }
Record provides a consistent set of fields used for all audit logging.
func (*Record) AddMetaTypeConverter ¶
func (rec *Record) AddMetaTypeConverter(f FuncMetaTypeConv)
AddMetaTypeConverter adds a function capable of converting meta field types into something more suitable for serialization.
Click to show internal directories.
Click to hide internal directories.