![]() |
3 years ago | |
---|---|---|
.. | ||
.gitignore | e5d28115ee vendor: regenerate | 3 years ago |
.travis.yml | 8d5eebcc6e vendor: github.com/bsphere/le_go v0.0.0-20200109081728-fc06dab2caa8 | 3 years ago |
LICENSE | 5a1b06d7fd rerun vndr | 8 years ago |
README.md | 5a1b06d7fd rerun vndr | 8 years ago |
le.go | 8d5eebcc6e vendor: github.com/bsphere/le_go v0.0.0-20200109081728-fc06dab2caa8 | 3 years ago |
Golang client library for logentries.com
It is compatible with http://golang.org/pkg/log/#Logger and also implements http://golang.org/pkg/io/#Writer
Add a new manual TCP token log at logentries.com and copy the token.
Installation: go get github.com/bsphere/le_go
Note: The Logger is blocking, it can be easily run in a goroutine by calling go le.Println(...)
package main
import "github.com/bsphere/le_go"
func main() {
le, err := le_go.Connect("XXXX-XXXX-XXXX-XXXX") // replace with token
if err != nil {
panic(err)
}
defer le.Close()
le.Println("another test message")
}