Package for error handling and error reporting
import (
"github.com/khulnasoft-lab/trace"
)
func someFunc() error {
return trace.Wrap(err)
}
func main() {
err := someFunc()
fmt.Println(err.Error()) // prints file, line and function
}
Add trace's document template to your ElasticSearch cluster
curl -XPUT 'http://localhost:9200/_template/trace' -d@udbbeat/template.json
Start udpbeat UDP logs collector and emitter
go get github.com/khulnasoft-lab/udpbeat
udpbeat
Hook up logger to UDP collector
In your code, attach a logrus hook to use udpbeat:
import (
"github.com/khulnasoft-lab/trace"
log "github.com/sirupsen/logrus"
)
func main() {
hook, err := trace.NewUDPHook()
if err != nil {
log.Fatalf(err)
}
log.SetHook(hook)
}
Done! You will get structured logs capturing output, log and error message.
You can edit udpbeat/template.json
to modify emitted fields to whatever makes sense to your app.