Clone this repo:
  1. a1dbeea Merge pull request #138 from vsco/ljk/fix-fsnotify by sergei-utinski · 6 years ago master
  2. 000912a fix fsnotify relocation by Lucas Kacher · 6 years ago
  3. 37f4271 Update README.md by Nino Kodabande · 7 years ago
  4. 66928be Update .travis.yml by Nino Kodabande · 7 years ago
  5. a927b68 Merge branch 'vsco-fix-log-reopen-with-inotify' by Nino Kodabande · 7 years ago

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.