package logger
import "github.com/docker/cli/components/engine/daemon/logger"
Package logger defines interfaces that logger drivers implement to log messages.
The other half of a logger driver is the implementation of the factory, which holds the contextual instance information that allows multiple loggers of the same type to perform different actions, such as logging to different locations.
Index ¶
- func ListDrivers() []string
- func PutMessage(msg *Message)
- func RegisterLogDriver(name string, c Creator) error
- func RegisterLogOptValidator(name string, l LogOptValidator) error
- func RegisterPluginGetter(plugingetter getter.PluginGetter)
- func ValidateLogOpts(name string, cfg map[string]string) error
- type Capability
- type Copier
- func NewCopier(srcs map[string]io.Reader, dst Logger) *Copier
- func (c *Copier) Close()
- func (c *Copier) Run()
- func (c *Copier) Wait()
- type Creator
- type ErrReadLogsNotSupported
- type Info
- func (info *Info) Command() string
- func (info *Info) ExtraAttributes(keyMod func(string) string) (map[string]string, error)
- func (info *Info) FullID() string
- func (info *Info) Hostname() (string, error)
- func (info *Info) ID() string
- func (info *Info) ImageFullID() string
- func (info *Info) ImageID() string
- func (info *Info) ImageName() string
- func (info *Info) Name() string
- type LogOptValidator
- type LogReader
- type LogWatcher
- func NewLogWatcher() *LogWatcher
- func (w *LogWatcher) Close()
- func (w *LogWatcher) WatchClose() <-chan struct{}
- type Logger
- type Message
- type ReadConfig
- type RingLogger
Functions ¶
func ListDrivers ¶
func ListDrivers() []string
ListDrivers gets the list of registered log driver names
func PutMessage ¶
func PutMessage(msg *Message)
PutMessage puts the specified message back n the message pool. The message fields are reset before putting into the pool.
func RegisterLogDriver ¶
RegisterLogDriver registers the given logging driver builder with given logging driver name.
func RegisterLogOptValidator ¶
func RegisterLogOptValidator(name string, l LogOptValidator) error
RegisterLogOptValidator registers the logging option validator with the given logging driver name.
func RegisterPluginGetter ¶
func RegisterPluginGetter(plugingetter getter.PluginGetter)
RegisterPluginGetter sets the plugingetter
func ValidateLogOpts ¶
ValidateLogOpts checks the options for the given log driver. The options supported are specific to the LogDriver implementation.
Types ¶
type Capability ¶
type Capability struct { // Determines if a log driver can read back logs ReadLogs bool }
Capability defines the list of capabilties that a driver can implement These capabilities are not required to be a logging driver, however do determine how a logging driver can be used
type Copier ¶
type Copier struct {
// contains filtered or unexported fields
}
Copier can copy logs from specified sources to Logger and attach Timestamp. Writes are concurrent, so you need implement some sync in your logger.
func NewCopier ¶
NewCopier creates a new Copier
func (*Copier) Close ¶
func (c *Copier) Close()
Close closes the copier
func (*Copier) Run ¶
func (c *Copier) Run()
Run starts logs copying
func (*Copier) Wait ¶
func (c *Copier) Wait()
Wait waits until all copying is done
type Creator ¶
Creator builds a logging driver instance with given context.
func GetLogDriver ¶
GetLogDriver provides the logging driver builder for a logging driver name.
type ErrReadLogsNotSupported ¶
type ErrReadLogsNotSupported struct{}
ErrReadLogsNotSupported is returned when the underlying log driver does not support reading
func (ErrReadLogsNotSupported) Error ¶
func (ErrReadLogsNotSupported) Error() string
func (ErrReadLogsNotSupported) NotImplemented ¶
func (ErrReadLogsNotSupported) NotImplemented()
NotImplemented makes this error implement the `NotImplemented` interface from api/errdefs
type Info ¶
type Info struct { Config map[string]string ContainerID string ContainerName string ContainerEntrypoint string ContainerArgs []string ContainerImageID string ContainerImageName string ContainerCreated time.Time ContainerEnv []string ContainerLabels map[string]string LogPath string DaemonName string }
Info provides enough information for a logging driver to do its function.
func (*Info) Command ¶
Command returns the command that the container being logged was started with. The Entrypoint is prepended to the container arguments.
func (*Info) ExtraAttributes ¶
ExtraAttributes returns the user-defined extra attributes (labels, environment variables) in key-value format. This can be used by log drivers that support metadata to add more context to a log.
func (*Info) FullID ¶
FullID is an alias of ContainerID.
func (*Info) Hostname ¶
Hostname returns the hostname from the underlying OS.
func (*Info) ID ¶
ID Returns the Container ID shortened to 12 characters.
func (*Info) ImageFullID ¶
ImageFullID is an alias of ContainerImageID.
func (*Info) ImageID ¶
ImageID returns the ContainerImageID shortened to 12 characters.
func (*Info) ImageName ¶
ImageName is an alias of ContainerImageName
func (*Info) Name ¶
Name returns the ContainerName without a preceding '/'.
type LogOptValidator ¶
LogOptValidator checks the options specific to the underlying logging implementation.
type LogReader ¶
type LogReader interface { // Read logs from underlying logging backend ReadLogs(ReadConfig) *LogWatcher }
LogReader is the interface for reading log messages for loggers that support reading.
type LogWatcher ¶
type LogWatcher struct { // For sending log messages to a reader. Msg chan *Message // For sending error messages that occur while while reading logs. Err chan error // contains filtered or unexported fields }
LogWatcher is used when consuming logs read from the LogReader interface.
func NewLogWatcher ¶
func NewLogWatcher() *LogWatcher
NewLogWatcher returns a new LogWatcher.
func (*LogWatcher) Close ¶
func (w *LogWatcher) Close()
Close notifies the underlying log reader to stop.
func (*LogWatcher) WatchClose ¶
func (w *LogWatcher) WatchClose() <-chan struct{}
WatchClose returns a channel receiver that receives notification when the watcher has been closed. This should only be called from one goroutine.
type Logger ¶
Logger is the interface for docker logging drivers.
func NewRingLogger ¶
NewRingLogger creates a new Logger that is implemented as a RingBuffer wrapping the passed in logger.
type Message ¶
type Message backend.LogMessage
Message is datastructure that represents piece of output produced by some container. The Line member is a slice of an array whose contents can be changed after a log driver's Log() method returns.
Message is subtyped from backend.LogMessage because there is a lot of internal complexity around the Message type that should not be exposed to any package not explicitly importing the logger type.
Any changes made to this struct must also be updated in the `reset` function
func NewMessage ¶
func NewMessage() *Message
NewMessage returns a new message from the message sync.Pool
func (*Message) AsLogMessage ¶
func (m *Message) AsLogMessage() *backend.LogMessage
AsLogMessage returns a pointer to the message as a pointer to backend.LogMessage, which is an identical type with a different purpose
type ReadConfig ¶
ReadConfig is the configuration passed into ReadLogs.
type RingLogger ¶
type RingLogger struct {
// contains filtered or unexported fields
}
RingLogger is a ring buffer that implements the Logger interface. This is used when lossy logging is OK.
func (*RingLogger) Close ¶
func (r *RingLogger) Close() error
Close closes the logger
func (*RingLogger) Log ¶
func (r *RingLogger) Log(msg *Message) error
Log queues messages into the ring buffer
func (*RingLogger) Name ¶
func (r *RingLogger) Name() string
Name returns the name of the underlying logger
Source Files ¶
adapter.go copier.go factory.go logger.go loginfo.go plugin.go plugin_unsupported.go proxy.go ring.go
Directories ¶
Path | Synopsis |
---|---|
components/engine/daemon/logger/awslogs | Package awslogs provides the logdriver for forwarding container logs to Amazon CloudWatch Logs |
components/engine/daemon/logger/fluentd | Package fluentd provides the log driver for forwarding server logs to fluentd endpoints. |
components/engine/daemon/logger/gcplogs | |
components/engine/daemon/logger/gelf | |
components/engine/daemon/logger/journald | |
components/engine/daemon/logger/jsonfilelog | Package jsonfilelog provides the default Logger implementation for Docker logging. |
components/engine/daemon/logger/jsonfilelog/jsonlog | |
components/engine/daemon/logger/jsonfilelog/multireader | |
components/engine/daemon/logger/logentries | Package logentries provides the log driver for forwarding server logs to logentries endpoints. |
components/engine/daemon/logger/loggerutils | |
components/engine/daemon/logger/splunk | Package splunk provides the log driver for forwarding server logs to Splunk HTTP Event Collector endpoint. |
components/engine/daemon/logger/syslog | Package syslog provides the logdriver for forwarding server logs to syslog endpoints. |
components/engine/daemon/logger/templates |
- Version
- v17.10.0-ce-rc1+incompatible
- Published
- Oct 4, 2017
- Platform
- js/wasm
- Imports
- 20 packages
- Last checked
- 4 hours ago –
Tools for package owners.