go-agent
go-agent copied to clipboard
New Relic Go Agent
The Go agent reports all CLM data regardless of length. However, since generally speaking transaction attributes may be no longer than 255 characters, these attributes will end up getting truncated...
Hi guys, If I am not mistaken, I think that this comment refers to an old method or a not implemented one: https://github.com/newrelic/go-agent/blob/c6110878eac69902e7c5d8203aa64c4e3ea4cae6/v3/integrations/nrecho-v4/nrecho.go#L73 The only way to create the middleware...
I was going through the docs and guided install for Golang, and saw go get isn’t working as instructed. You need to use go mod init XXX/newrelic, before go get....
Suggested by @rittneje; Thanks! It would be helpful to provide a way to make it easy to configure the Go Agent from user-supplied data such as a configuration file. This...
Currently the nrlambda integration directly calls `StartTransaction` and does not pass any `TraceOption`s. https://github.com/newrelic/go-agent/blob/5421539b6c7c5d481958236cf247759eff0700ad/v3/integrations/nrlambda/handler.go#L102 I think `nrlambda.WrapHandler`and `nrlambda.Wrap` need to be amended to accept them, just like `newrelic.WrapHandle` does. Similarly,...
When explicitly calling the shutdown function, the expectation is that the execution of the code is being paused until all the data in queue is sent to NR1. This is...
## Summary When using [v3/integrations/nrpq](https://godoc.org/github.com/newrelic/go-agent/v3/integrations/nrpq) the datastore segment is automatically instrumented however `ParameterizedQuery` field is always empty. ## Desired Behaviour The nrpq integration should also saved the parametrized query (`ParameterizedQuery`)...
## Summary newrelic errors ui provides a functionality to notice custom errors outside transactions but currently go-agent doesn't provide anyway to do this. this is helpful to notice errors that...
[NOTE]: # ( ^^ Provide a general summary of the issue in the title above. ^^ ) ## Description In `newrelic.Transaction` defined here: https://github.com/newrelic/go-agent/blob/master/v3/newrelic/transaction.go#L21 Has a private field Name which...