Giter VIP home page Giter VIP logo

Comments (4)

choppedpork avatar choppedpork commented on June 14, 2024 3

@boaz0 logrustash.DefaultFormatter is not actually present in v0.4.1 - I got bitten by this when moving to Go 1.13 + modules as the module system by default uses the latest release which, as opposed to master, does not have the DefaultFormatter. Would be great to see a new release!

In the meantime go get github.com/bshuster-repo/logrus-logstash-hook@b3d898b5138adbc4c4da62fa6d889f18a587566b has done the trick for me :)

from logrus-logstash-hook.

boaz0 avatar boaz0 commented on June 14, 2024 1

That's true, because master has the new API.
I guess I should mention that in the README.md file.

Thanks for the feedback though.

from logrus-logstash-hook.

boaz0 avatar boaz0 commented on June 14, 2024

Hi @janekolszak
The stable release doesn't support WithField methods. Nevertheless, version 0.4.1 is supporting it and available (branch 0.4)

If you still want to use the stable release, instead of doing:

hook, err := logrustash.NewHookWithFields("tcp", "172.17.0.2:9999", "myappName", logrus.Fields{})

hook.WithFields(logrus.Fields{
        "hostname":    os.Hostname(),
        "serviceName": "myServiceName",
})

write you code in the following way:

log := logrus.New()
conn, err := net.Dial("tcp", "172.17.0.2:9999")
if err != nil {
    log.Fatal(err)
}
hook := logrustash.New(conn, logrustash.DefaultFormatter(logrus.Fields{"type": "myappName"}))

log.Hooks.Add(hook)
ctx := log.WithFields(logrus.Fields{
        "hostname":    os.Hostname(),
        "serviceName": "myServiceName",
})

from logrus-logstash-hook.

boaz0 avatar boaz0 commented on June 14, 2024

I am closing this as the master branch was released here.

If there is a problem with this, feel free to re-open this.

Thanks.

from logrus-logstash-hook.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.