-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #760 from nr-swilloughby/clm_on_default
Clm on by default
- Loading branch information
Showing
50 changed files
with
551 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,18 @@ | ||
module github.com/newrelic/go-agent/v3 | ||
|
||
go 1.18 | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.3 | ||
google.golang.org/grpc v1.54.0 | ||
) | ||
|
||
require ( | ||
golang.org/x/net v0.8.0 // indirect | ||
golang.org/x/sys v0.6.0 // indirect | ||
golang.org/x/text v0.8.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
) | ||
|
||
retract v3.22.0 // release process error corrected in v3.22.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/logWriter | ||
|
||
go 1.17 | ||
|
||
require ( | ||
github.com/newrelic/go-agent/v3 v3.19.1 | ||
github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter v1.0.0 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
golang.org/x/net v0.0.0-20200822124328-c89045814202 // indirect | ||
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd // indirect | ||
golang.org/x/text v0.3.0 // indirect | ||
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect | ||
google.golang.org/grpc v1.39.0 // indirect | ||
google.golang.org/protobuf v1.25.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrlogrus | ||
|
||
go 1.17 | ||
|
||
require ( | ||
github.com/newrelic/go-agent/v3 v3.18.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
golang.org/x/net v0.0.0-20200822124328-c89045814202 // indirect | ||
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd // indirect | ||
golang.org/x/text v0.3.0 // indirect | ||
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect | ||
google.golang.org/grpc v1.39.0 // indirect | ||
google.golang.org/protobuf v1.25.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter | ||
|
||
go 1.17 | ||
|
||
require github.com/newrelic/go-agent/v3 v3.19.1 | ||
|
||
require ( | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
golang.org/x/net v0.0.0-20200822124328-c89045814202 // indirect | ||
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd // indirect | ||
golang.org/x/text v0.3.0 // indirect | ||
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect | ||
google.golang.org/grpc v1.39.0 // indirect | ||
google.golang.org/protobuf v1.25.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,20 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrzap | ||
|
||
go 1.18 | ||
|
||
require ( | ||
github.com/newrelic/go-agent/v3 v3.21.1 | ||
go.uber.org/zap v1.24.0 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
go.uber.org/atomic v1.7.0 // indirect | ||
go.uber.org/multierr v1.6.0 // indirect | ||
golang.org/x/net v0.8.0 // indirect | ||
golang.org/x/sys v0.6.0 // indirect | ||
golang.org/x/text v0.8.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect | ||
google.golang.org/grpc v1.54.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrzerolog | ||
|
||
go 1.17 | ||
|
||
require ( | ||
github.com/newrelic/go-agent/v3 v3.18.0 | ||
github.com/rs/zerolog v1.26.1 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d // indirect | ||
golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect | ||
google.golang.org/grpc v1.39.0 // indirect | ||
google.golang.org/protobuf v1.25.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,21 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/zerologWriter | ||
|
||
go 1.17 | ||
|
||
require ( | ||
github.com/newrelic/go-agent/v3 v3.19.1 | ||
github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter v1.0.0 | ||
github.com/rs/zerolog v1.27.0 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
golang.org/x/net v0.0.0-20200822124328-c89045814202 // indirect | ||
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6 // indirect | ||
golang.org/x/text v0.3.0 // indirect | ||
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect | ||
google.golang.org/grpc v1.39.0 // indirect | ||
google.golang.org/protobuf v1.25.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/nrb3 | ||
|
||
go 1.19 | ||
|
||
require github.com/newrelic/go-agent/v3 v3.21.1 | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
golang.org/x/net v0.8.0 // indirect | ||
golang.org/x/sys v0.6.0 // indirect | ||
golang.org/x/text v0.8.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect | ||
google.golang.org/grpc v1.54.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/nrecho-v3 | ||
|
||
// 1.7 is the earliest version of Go tested by v3.1.0: | ||
// https://github.com/labstack/echo/blob/v3.1.0/.travis.yml | ||
go 1.7 | ||
|
||
require ( | ||
// v3.1.0 is the earliest v3 version of Echo that works with modules due | ||
// to the github.com/rsc/letsencrypt import of v3.0.0. | ||
github.com/labstack/echo v3.1.0+incompatible | ||
github.com/labstack/gommon v0.4.0 // indirect | ||
github.com/newrelic/go-agent/v3 v3.17.0 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,26 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/nrecho-v4 | ||
|
||
// As of Jun 2022, the echo go.mod file uses 1.17: | ||
// https://github.com/labstack/echo/blob/master/go.mod | ||
go 1.17 | ||
|
||
require ( | ||
github.com/labstack/echo/v4 v4.9.0 | ||
github.com/newrelic/go-agent/v3 v3.18.2 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
github.com/labstack/gommon v0.3.1 // indirect | ||
github.com/mattn/go-colorable v0.1.11 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.1 // indirect | ||
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect | ||
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect | ||
golang.org/x/sys v0.0.0-20211103235746-7861aae1554b // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect | ||
google.golang.org/grpc v1.39.0 // indirect | ||
google.golang.org/protobuf v1.25.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,35 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/nrgrpc | ||
|
||
go 1.19 | ||
|
||
require ( | ||
// protobuf v1.3.0 is the earliest version using modules, we use v1.3.1 | ||
// because all dependencies were removed in this version. | ||
github.com/golang/protobuf v1.5.3 | ||
github.com/newrelic/go-agent/v3 v3.23.0 | ||
github.com/newrelic/go-agent/v3/integrations/nrsecurityagent v1.0.2 | ||
// v1.15.0 is the earliest version of grpc using modules. | ||
google.golang.org/grpc v1.54.0 | ||
google.golang.org/protobuf v1.28.1 | ||
) | ||
|
||
require ( | ||
github.com/dlclark/regexp2 v1.9.0 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/juju/fslock v0.0.0-20160525022230-4d5c94c67b4b // indirect | ||
github.com/k2io/hookingo v1.0.3 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/mackerelio/go-osstat v0.2.4 // indirect | ||
github.com/newrelic/csec-go-agent v0.2.1 // indirect | ||
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
github.com/struCoder/pidusage v0.2.1 // indirect | ||
golang.org/x/arch v0.3.0 // indirect | ||
golang.org/x/net v0.8.0 // indirect | ||
golang.org/x/sys v0.7.0 // indirect | ||
golang.org/x/text v0.8.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) | ||
|
||
replace github.com/newrelic/go-agent/v3 => ../.. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.