diff --git a/v3/integrations/nrfasthttp/examples/client-fasthttp/go.mod b/v3/integrations/nrfasthttp/examples/client-fasthttp/go.mod index 6290b4b27..20d149c3e 100644 --- a/v3/integrations/nrfasthttp/examples/client-fasthttp/go.mod +++ b/v3/integrations/nrfasthttp/examples/client-fasthttp/go.mod @@ -9,4 +9,5 @@ require ( ) replace github.com/newrelic/go-agent/v3/integrations/nrfasthttp v1.0.0 => ../../ + replace github.com/newrelic/go-agent/v3 => ../../../.. diff --git a/v3/integrations/nrfasthttp/examples/server-fasthttp/go.mod b/v3/integrations/nrfasthttp/examples/server-fasthttp/go.mod index b2a166a20..ae1d50411 100644 --- a/v3/integrations/nrfasthttp/examples/server-fasthttp/go.mod +++ b/v3/integrations/nrfasthttp/examples/server-fasthttp/go.mod @@ -9,4 +9,5 @@ require ( ) replace github.com/newrelic/go-agent/v3/integrations/nrfasthttp v1.0.0 => ../../ + replace github.com/newrelic/go-agent/v3 => ../../../.. diff --git a/v3/integrations/nrfasthttp/go.mod b/v3/integrations/nrfasthttp/go.mod index 7a4ef4f88..af82630a3 100644 --- a/v3/integrations/nrfasthttp/go.mod +++ b/v3/integrations/nrfasthttp/go.mod @@ -6,4 +6,3 @@ require ( github.com/newrelic/go-agent/v3 v3.28.1 github.com/valyala/fasthttp v1.49.0 ) -replace github.com/newrelic/go-agent/v3 => ../.. diff --git a/v3/integrations/nrfasthttp/instrumentation.go b/v3/integrations/nrfasthttp/instrumentation.go index c35b0d2bb..b720eecbe 100644 --- a/v3/integrations/nrfasthttp/instrumentation.go +++ b/v3/integrations/nrfasthttp/instrumentation.go @@ -2,17 +2,15 @@ package nrfasthttp import ( "net/http" + "github.com/newrelic/go-agent/v3/internal" "github.com/newrelic/go-agent/v3/newrelic" "github.com/valyala/fasthttp" "github.com/valyala/fasthttp/fasthttpadaptor" ) - func init() { internal.TrackUsage("integration", "framework", "fasthttp") } - - type fasthttpWrapperResponse struct { ctx *fasthttp.RequestCtx } diff --git a/v3/integrations/nrgraphqlgo/example/go.mod b/v3/integrations/nrgraphqlgo/example/go.mod index d99699eef..b50183e43 100644 --- a/v3/integrations/nrgraphqlgo/example/go.mod +++ b/v3/integrations/nrgraphqlgo/example/go.mod @@ -9,7 +9,6 @@ require ( github.com/newrelic/go-agent/v3/integrations/nrgraphqlgo v1.0.0 ) - replace github.com/newrelic/go-agent/v3/integrations/nrgraphqlgo => ../ replace github.com/newrelic/go-agent/v3 => ../../.. diff --git a/v3/integrations/nrgrpc/go.mod b/v3/integrations/nrgrpc/go.mod index de50413b0..95611af41 100644 --- a/v3/integrations/nrgrpc/go.mod +++ b/v3/integrations/nrgrpc/go.mod @@ -13,7 +13,6 @@ require ( google.golang.org/protobuf v1.30.0 ) +replace github.com/newrelic/go-agent/v3 => ../.. replace github.com/newrelic/go-agent/v3/integrations/nrsecurityagent => ../../integrations/nrsecurityagent - -replace github.com/newrelic/go-agent/v3 => ../.. diff --git a/v3/integrations/nrsecurityagent/go.mod b/v3/integrations/nrsecurityagent/go.mod index cd81ce7ff..a415d6b2f 100644 --- a/v3/integrations/nrsecurityagent/go.mod +++ b/v3/integrations/nrsecurityagent/go.mod @@ -9,5 +9,4 @@ require ( gopkg.in/yaml.v2 v2.4.0 ) - replace github.com/newrelic/go-agent/v3 => ../..