2014-07-31 17:03:21 -04:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"strconv"
|
2016-01-27 17:09:42 -05:00
|
|
|
"time"
|
2014-07-31 17:03:21 -04:00
|
|
|
|
2015-03-26 18:22:04 -04:00
|
|
|
"github.com/Sirupsen/logrus"
|
2016-01-27 17:09:42 -05:00
|
|
|
"github.com/docker/docker/api/types/backend"
|
2015-11-12 14:55:17 -05:00
|
|
|
"github.com/docker/docker/container"
|
2015-06-30 20:40:13 -04:00
|
|
|
"github.com/docker/docker/daemon/logger"
|
2015-11-03 13:45:12 -05:00
|
|
|
"github.com/docker/docker/daemon/logger/jsonfilelog"
|
2015-09-18 13:48:16 -04:00
|
|
|
derr "github.com/docker/docker/errors"
|
2015-12-19 09:43:10 -05:00
|
|
|
"github.com/docker/docker/pkg/ioutils"
|
2015-04-11 17:49:14 -04:00
|
|
|
"github.com/docker/docker/pkg/stdcopy"
|
2016-01-27 17:09:42 -05:00
|
|
|
timetypes "github.com/docker/engine-api/types/time"
|
2014-07-31 17:03:21 -04:00
|
|
|
)
|
|
|
|
|
2015-07-30 17:01:53 -04:00
|
|
|
// ContainerLogs hooks up a container's stdout and stderr streams
|
|
|
|
// configured with the given struct.
|
2015-12-19 09:43:10 -05:00
|
|
|
func (daemon *Daemon) ContainerLogs(containerName string, config *backend.ContainerLogsConfig, started chan struct{}) error {
|
2015-12-11 12:39:28 -05:00
|
|
|
container, err := daemon.GetContainer(containerName)
|
2015-09-28 16:36:29 -04:00
|
|
|
if err != nil {
|
|
|
|
return derr.ErrorCodeNoSuchContainer.WithArgs(containerName)
|
|
|
|
}
|
|
|
|
|
2016-01-27 17:09:42 -05:00
|
|
|
if !(config.ShowStdout || config.ShowStderr) {
|
2015-09-18 13:48:16 -04:00
|
|
|
return derr.ErrorCodeNeedStream
|
2014-07-31 17:03:21 -04:00
|
|
|
}
|
2015-04-11 17:49:14 -04:00
|
|
|
|
2015-11-03 13:45:12 -05:00
|
|
|
cLog, err := daemon.getLogger(container)
|
2015-04-09 00:23:30 -04:00
|
|
|
if err != nil {
|
2015-06-30 20:40:13 -04:00
|
|
|
return err
|
|
|
|
}
|
2015-07-03 09:50:06 -04:00
|
|
|
logReader, ok := cLog.(logger.LogReader)
|
2015-06-30 20:40:13 -04:00
|
|
|
if !ok {
|
2015-07-03 09:50:06 -04:00
|
|
|
return logger.ErrReadLogsNotSupported
|
2014-07-31 17:03:21 -04:00
|
|
|
}
|
2015-05-06 21:09:27 -04:00
|
|
|
|
2015-07-03 09:50:06 -04:00
|
|
|
follow := config.Follow && container.IsRunning()
|
|
|
|
tailLines, err := strconv.Atoi(config.Tail)
|
|
|
|
if err != nil {
|
|
|
|
tailLines = -1
|
|
|
|
}
|
2015-04-23 18:08:41 -04:00
|
|
|
|
2015-07-03 09:50:06 -04:00
|
|
|
logrus.Debug("logs: begin stream")
|
2016-01-27 17:09:42 -05:00
|
|
|
|
|
|
|
var since time.Time
|
|
|
|
if config.Since != "" {
|
|
|
|
s, n, err := timetypes.ParseTimestamps(config.Since, 0)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
since = time.Unix(s, n)
|
|
|
|
}
|
2015-07-03 09:50:06 -04:00
|
|
|
readConfig := logger.ReadConfig{
|
2016-01-27 17:09:42 -05:00
|
|
|
Since: since,
|
2015-07-03 09:50:06 -04:00
|
|
|
Tail: tailLines,
|
|
|
|
Follow: follow,
|
|
|
|
}
|
|
|
|
logs := logReader.ReadLogs(readConfig)
|
2014-10-30 15:33:26 -04:00
|
|
|
|
2015-12-19 09:43:10 -05:00
|
|
|
wf := ioutils.NewWriteFlusher(config.OutStream)
|
|
|
|
defer wf.Close()
|
|
|
|
close(started)
|
|
|
|
wf.Flush()
|
|
|
|
|
|
|
|
var outStream io.Writer = wf
|
|
|
|
errStream := outStream
|
|
|
|
if !container.Config.Tty {
|
|
|
|
errStream = stdcopy.NewStdWriter(outStream, stdcopy.Stderr)
|
|
|
|
outStream = stdcopy.NewStdWriter(outStream, stdcopy.Stdout)
|
|
|
|
}
|
|
|
|
|
2015-07-03 09:50:06 -04:00
|
|
|
for {
|
2015-06-04 15:15:33 -04:00
|
|
|
select {
|
2015-07-03 09:50:06 -04:00
|
|
|
case err := <-logs.Err:
|
|
|
|
logrus.Errorf("Error streaming logs: %v", err)
|
|
|
|
return nil
|
2015-06-04 15:15:33 -04:00
|
|
|
case <-config.Stop:
|
2015-07-03 09:50:06 -04:00
|
|
|
logs.Close()
|
|
|
|
return nil
|
|
|
|
case msg, ok := <-logs.Msg:
|
|
|
|
if !ok {
|
|
|
|
logrus.Debugf("logs: end stream")
|
|
|
|
return nil
|
2015-06-04 15:15:33 -04:00
|
|
|
}
|
2015-07-03 09:50:06 -04:00
|
|
|
logLine := msg.Line
|
|
|
|
if config.Timestamps {
|
|
|
|
logLine = append([]byte(msg.Timestamp.Format(logger.TimeFormat)+" "), logLine...)
|
2015-06-04 15:15:33 -04:00
|
|
|
}
|
2016-01-27 17:09:42 -05:00
|
|
|
if msg.Source == "stdout" && config.ShowStdout {
|
2015-07-03 09:50:06 -04:00
|
|
|
outStream.Write(logLine)
|
|
|
|
}
|
2016-01-27 17:09:42 -05:00
|
|
|
if msg.Source == "stderr" && config.ShowStderr {
|
2015-07-03 09:50:06 -04:00
|
|
|
errStream.Write(logLine)
|
2014-10-30 15:33:26 -04:00
|
|
|
}
|
2014-07-31 17:03:21 -04:00
|
|
|
}
|
|
|
|
}
|
2015-06-30 20:40:13 -04:00
|
|
|
}
|
2015-11-03 13:45:12 -05:00
|
|
|
|
2015-11-12 14:55:17 -05:00
|
|
|
func (daemon *Daemon) getLogger(container *container.Container) (logger.Logger, error) {
|
|
|
|
if container.LogDriver != nil && container.IsRunning() {
|
|
|
|
return container.LogDriver, nil
|
2015-11-03 13:45:12 -05:00
|
|
|
}
|
2015-11-12 14:55:17 -05:00
|
|
|
cfg := container.GetLogConfig(daemon.defaultLogConfig)
|
2015-11-03 13:45:12 -05:00
|
|
|
if err := logger.ValidateLogOpts(cfg.Type, cfg.Config); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return container.StartLogger(cfg)
|
|
|
|
}
|
|
|
|
|
|
|
|
// StartLogging initializes and starts the container logging stream.
|
2015-11-12 14:55:17 -05:00
|
|
|
func (daemon *Daemon) StartLogging(container *container.Container) error {
|
|
|
|
cfg := container.GetLogConfig(daemon.defaultLogConfig)
|
2015-11-03 13:45:12 -05:00
|
|
|
if cfg.Type == "none" {
|
|
|
|
return nil // do not start logging routines
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := logger.ValidateLogOpts(cfg.Type, cfg.Config); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
l, err := container.StartLogger(cfg)
|
|
|
|
if err != nil {
|
|
|
|
return derr.ErrorCodeInitLogger.WithArgs(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
copier := logger.NewCopier(container.ID, map[string]io.Reader{"stdout": container.StdoutPipe(), "stderr": container.StderrPipe()}, l)
|
2015-11-12 14:55:17 -05:00
|
|
|
container.LogCopier = copier
|
2015-11-03 13:45:12 -05:00
|
|
|
copier.Run()
|
2015-11-12 14:55:17 -05:00
|
|
|
container.LogDriver = l
|
2015-11-03 13:45:12 -05:00
|
|
|
|
|
|
|
// set LogPath field only for json-file logdriver
|
|
|
|
if jl, ok := l.(*jsonfilelog.JSONFileLogger); ok {
|
|
|
|
container.LogPath = jl.LogPath()
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|