Tobias von Dewitz 362fdc9fb2 go modified 5 years ago
..
ratelimiter 362fdc9fb2 go modified 5 years ago
util 75fda08e43 added periodic reconnect to nats 6 years ago
watch 362fdc9fb2 go modified 5 years ago
winfile 75fda08e43 added periodic reconnect to nats 6 years ago
.gitignore 362fdc9fb2 go modified 5 years ago
.travis.yml 362fdc9fb2 go modified 5 years ago
CHANGES.md 75fda08e43 added periodic reconnect to nats 6 years ago
Dockerfile 75fda08e43 added periodic reconnect to nats 6 years ago
LICENSE.txt 75fda08e43 added periodic reconnect to nats 6 years ago
Makefile 75fda08e43 added periodic reconnect to nats 6 years ago
README.md 362fdc9fb2 go modified 5 years ago
appveyor.yml 75fda08e43 added periodic reconnect to nats 6 years ago
tail.go 362fdc9fb2 go modified 5 years ago
tail_posix.go 75fda08e43 added periodic reconnect to nats 6 years ago
tail_windows.go 75fda08e43 added periodic reconnect to nats 6 years ago

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.