tree: f64d7b8815856fb82975e15820ac00f61df72d72 [path history] [tgz]
  1. cmd/
  2. Godeps/
  3. ratelimiter/
  4. util/
  5. watch/
  6. winfile/
  7. .gitignore
  8. .travis.yml
  9. appveyor.yml
  10. CHANGES.md
  11. Dockerfile
  12. LICENSE.txt
  13. Makefile
  14. README.md
  15. tail.go
  16. tail_posix.go
  17. tail_windows.go
vendor/github.com/hpcloud/tail/README.md

Build Status Build status

Go package for tail-ing files

A Go package striving to emulate the features of the BSD tail program.

t, err := tail.TailFile("/var/log/nginx.log", tail.Config{Follow: true})
for line := range t.Lines {
    fmt.Println(line.Text)
}

See API documentation.

Log rotation

Tail comes with full support for truncation/move detection as it is designed to work with log rotation tools.

Installing

go get github.com/hpcloud/tail/...

Windows support

This package needs assistance for full Windows support.