package logger

import "github.com/dotcloud/docker/daemon/logger"

Index

Types

type Copier

type Copier struct {
	// contains filtered or unexported fields
}

Copier can copy logs from specified sources to Logger and attach ContainerID and Timestamp. Writes are concurrent, so you need implement some sync in your logger

func NewCopier

func NewCopier(cid string, srcs map[string]io.Reader, dst Logger) (*Copier, error)

NewCopier creates new 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 Logger

type Logger interface {
	Log(*Message) error
	Name() string
	Close() error
}

Logger is interface for docker logging drivers

type Message

type Message struct {
	ContainerID string
	Line        []byte
	Source      string
	Timestamp   time.Time
}

Message is datastructure that represents record from some container

Source Files

copier.go logger.go

Directories

PathSynopsis
daemon/logger/jsonfilelog
daemon/logger/syslog
Version
v1.6.0-rc2
Published
Mar 25, 2015
Platform
js/wasm
Imports
5 packages
Last checked
5 minutes ago

Tools for package owners.