GithubHelp home page GithubHelp logo

Add slog integration about go-agent HOT 8 CLOSED

cojoj avatar cojoj commented on July 20, 2024 5
Add slog integration

from go-agent.

Comments (8)

iamemilio avatar iamemilio commented on July 20, 2024 6

Hi, this is very much on our radar. We don't have an exact timeline for this, but we are planning an integration for slog, as well as some improvements to the logs in context features supported by the go agent. We will update you when we have more specifics.

from go-agent.

Jared-Prime avatar Jared-Prime commented on July 20, 2024 1

Correct me if I'm wrong, but I believe this may be implemented now using the v3 logWriter, eg

package main

import (
	"github.com/newrelic/go-agent/v3/integrations/logcontext-v2/logWriter"
	"github.com/newrelic/go-agent/v3/newrelic"
	"log/slog"
	"os"
)

func main() {
   app, _ := newrelic.NewApplication(
     newrelic.ConfigAppName("example"),
     newrelic.ConfigLicense(os.Getenv("NEW_RELIC_LICENSE")),
     newrelic.ConfigAppLogForwardingEnabled(true),
   )

    writer := logWriter.New(os.Stdout, app)
    options := &slog.HandlerOptions{Level: slog.LevelInfo}
    handler := slog.NewJSONHandler(writer, options)    

    slog.SetDefault(slog.New(handler))
}

from go-agent.

iamemilio avatar iamemilio commented on July 20, 2024 1

The log writer product is very flexible, and is technically compatible with anything that can write to an io.Writer interface. We have not internally tested this with slog, but I cant see why this would be any different than other tools that use io.Writer. This should work for log decoration, but not auto-instrumentation.

from go-agent.

iamemilio avatar iamemilio commented on July 20, 2024 1

Thank you all for your patience, I am very excited to ask you all to take a look at, and give a test drive to what is soon to become nrslog! #847

from go-agent.

iamemilio avatar iamemilio commented on July 20, 2024 1

https://docs.newrelic.com/docs/logs/logs-context/configure-logs-context-go/#5-slog

from go-agent.

chad-bekmezian-snap avatar chad-bekmezian-snap commented on July 20, 2024

Any updates on this?

from go-agent.

miyamo2 avatar miyamo2 commented on July 20, 2024

@Jared-Prime
Thanks for the code. It seems to have worked flawlessly.

Correct me if I'm wrong, but I believe this may be implemented now using the v3 logWriter, eg

package main

import (
	"github.com/newrelic/go-agent/v3/integrations/logcontext-v2/logWriter"
	"github.com/newrelic/go-agent/v3/newrelic"
	"log/slog"
	"os"
)

func main() {
   app, _ := newrelic.NewApplication(
     newrelic.ConfigAppName("example"),
     newrelic.ConfigLicense(os.Getenv("NEW_RELIC_LICENSE")),
     newrelic.ConfigAppLogForwardingEnabled(true),
   )

    writer := logWriter.New(os.Stdout, app)
    options := &slog.HandlerOptions{Level: slog.LevelInfo}
    handler := slog.NewJSONHandler(writer, options)    

    slog.SetDefault(slog.New(handler))
}

from go-agent.

iamemilio avatar iamemilio commented on July 20, 2024

We are planning a release next week, probably on Wednesday, but will be accepting community feedback until then. Please leave comments on the linked pull request!

from go-agent.

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.