blob: 29462dc43361576d9790c5062a9a258afcb49746 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
--- configuration/parser.go 2023-10-02 13:09:30.000000000 -0400
+++ configuration/parser.go 2025-02-04 15:23:06.588689000 -0500
@@ -10,5 +10,5 @@
"github.com/sirupsen/logrus"
- "gopkg.in/yaml.v2"
+ "gopkg.in/yaml.v3"
)
--- configuration/configuration_test.go 2023-10-02 13:09:30.000000000 -0400
+++ configuration/configuration_test.go 2025-02-04 15:23:55.324424000 -0500
@@ -11,5 +11,5 @@
. "gopkg.in/check.v1"
- "gopkg.in/yaml.v2"
+ "gopkg.in/yaml.v3"
)
--- vendor/github.com/yvasiyarov/gorelic/agent.go 2014-12-12 02:35:37.000000000 -0500
+++ vendor/github.com/yvasiyarov/gorelic/agent.go 2025-02-04 18:23:32.348173000 -0500
@@ -96,5 +96,5 @@
agent.plugin = newrelic_platform_go.NewNewrelicPlugin(agent.AgentVersion, agent.NewrelicLicense, agent.NewrelicPollInterval)
- component := newrelic_platform_go.NewPluginComponent(agent.NewrelicName, agent.AgentGUID)
+ component := newrelic_platform_go.NewPluginComponent(agent.NewrelicName, agent.AgentGUID, true)
agent.plugin.AddComponent(component)
|