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

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.