Tobias von Dewitz 362fdc9fb2 go modified 5 лет назад
..
ratelimiter 362fdc9fb2 go modified 5 лет назад
util 75fda08e43 added periodic reconnect to nats 6 лет назад
watch 362fdc9fb2 go modified 5 лет назад
winfile 75fda08e43 added periodic reconnect to nats 6 лет назад
.gitignore 362fdc9fb2 go modified 5 лет назад
.travis.yml 362fdc9fb2 go modified 5 лет назад
CHANGES.md 75fda08e43 added periodic reconnect to nats 6 лет назад
Dockerfile 75fda08e43 added periodic reconnect to nats 6 лет назад
LICENSE.txt 75fda08e43 added periodic reconnect to nats 6 лет назад
Makefile 75fda08e43 added periodic reconnect to nats 6 лет назад
README.md 362fdc9fb2 go modified 5 лет назад
appveyor.yml 75fda08e43 added periodic reconnect to nats 6 лет назад
tail.go 362fdc9fb2 go modified 5 лет назад
tail_posix.go 75fda08e43 added periodic reconnect to nats 6 лет назад
tail_windows.go 75fda08e43 added periodic reconnect to nats 6 лет назад

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.