File tree 17 files changed +23
-21
lines changed
17 files changed +23
-21
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
10
10
"runtime"
11
11
"strings"
12
12
13
- "github.com/newrelic/infra-integrations-sdk/integration"
13
+ "github.com/newrelic/infra-integrations-sdk/v3/ integration"
14
14
"github.com/newrelic/nri-vsphere/internal/client"
15
15
"github.com/newrelic/nri-vsphere/internal/collect"
16
16
"github.com/newrelic/nri-vsphere/internal/config"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module github.com/newrelic/nri-vsphere
3
3
go 1.23.1
4
4
5
5
require (
6
- github.com/newrelic/infra-integrations-sdk v3.8.2+incompatible
6
+ github.com/newrelic/infra-integrations-sdk/v3 v3.9.1
7
7
github.com/sirupsen/logrus v1.9.3
8
8
github.com/stretchr/testify v1.9.0
9
9
github.com/vmware/govmomi v0.36.3
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0=
8
8
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY =
9
9
github.com/newrelic/infra-integrations-sdk v3.8.2+incompatible h1:Ktcm1aPAl7CW3o+FXAIKJ+jygWVXDXaUIWFyf2CXQTk =
10
10
github.com/newrelic/infra-integrations-sdk v3.8.2+incompatible /go.mod h1:tMUHRMq6mJS0YyBnbWrTXAnREnQqC1AGO6Lu45u5xAM =
11
+ github.com/newrelic/infra-integrations-sdk/v3 v3.9.1 h1:dCtVLsYNHWTQ5aAlAaHroomOUlqxlGTrdi6XTlvBDfI =
12
+ github.com/newrelic/infra-integrations-sdk/v3 v3.9.1 /go.mod h1:yPeidhcq9Cla0QDquGXH0KqvS2k9xtetFOD7aLA0Z8M =
11
13
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4 =
12
14
github.com/pkg/errors v0.9.1 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
13
15
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
Original file line number Diff line number Diff line change 4
4
"fmt"
5
5
"time"
6
6
7
- "github.com/newrelic/infra-integrations-sdk/persist"
7
+ "github.com/newrelic/infra-integrations-sdk/v3/ persist"
8
8
)
9
9
10
10
type Cache struct {
Original file line number Diff line number Diff line change 4
4
"testing"
5
5
"time"
6
6
7
- "github.com/newrelic/infra-integrations-sdk/persist"
7
+ "github.com/newrelic/infra-integrations-sdk/v3/ persist"
8
8
"github.com/stretchr/testify/assert"
9
9
)
10
10
Original file line number Diff line number Diff line change 7
7
"context"
8
8
"time"
9
9
10
- "github.com/newrelic/infra-integrations-sdk/persist"
10
+ "github.com/newrelic/infra-integrations-sdk/v3/ persist"
11
11
"github.com/newrelic/nri-vsphere/internal/cache"
12
12
"github.com/newrelic/nri-vsphere/internal/config"
13
13
"github.com/newrelic/nri-vsphere/internal/events"
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ import (
13
13
"github.com/newrelic/nri-vsphere/internal/performance"
14
14
"github.com/newrelic/nri-vsphere/internal/tag"
15
15
16
- sdkArgs "github.com/newrelic/infra-integrations-sdk/args"
17
- "github.com/newrelic/infra-integrations-sdk/integration"
16
+ sdkArgs "github.com/newrelic/infra-integrations-sdk/v3/ args"
17
+ "github.com/newrelic/infra-integrations-sdk/v3/ integration"
18
18
logrus "github.com/sirupsen/logrus"
19
19
"github.com/vmware/govmomi"
20
20
"github.com/vmware/govmomi/view"
Original file line number Diff line number Diff line change 9
9
10
10
"github.com/newrelic/nri-vsphere/internal/config"
11
11
12
- "github.com/newrelic/infra-integrations-sdk/data/metric"
12
+ "github.com/newrelic/infra-integrations-sdk/v3/ data/metric"
13
13
)
14
14
15
15
func createClusterSamples (config * config.Config ) {
Original file line number Diff line number Diff line change 9
9
10
10
"github.com/newrelic/nri-vsphere/internal/config"
11
11
12
- eventSDK "github.com/newrelic/infra-integrations-sdk/data/event"
13
- "github.com/newrelic/infra-integrations-sdk/data/metric"
14
- "github.com/newrelic/infra-integrations-sdk/integration"
12
+ eventSDK "github.com/newrelic/infra-integrations-sdk/v3/ data/event"
13
+ "github.com/newrelic/infra-integrations-sdk/v3/ data/metric"
14
+ "github.com/newrelic/infra-integrations-sdk/v3/ integration"
15
15
"github.com/newrelic/nri-vsphere/internal/events"
16
16
logrus "github.com/sirupsen/logrus"
17
17
)
Original file line number Diff line number Diff line change 8
8
9
9
"github.com/newrelic/nri-vsphere/internal/config"
10
10
11
- "github.com/newrelic/infra-integrations-sdk/data/metric"
11
+ "github.com/newrelic/infra-integrations-sdk/v3/ data/metric"
12
12
"github.com/vmware/govmomi/vim25/types"
13
13
)
14
14
Original file line number Diff line number Diff line change 9
9
10
10
"github.com/newrelic/nri-vsphere/internal/config"
11
11
12
- "github.com/newrelic/infra-integrations-sdk/data/metric"
12
+ "github.com/newrelic/infra-integrations-sdk/v3/ data/metric"
13
13
)
14
14
15
15
func createHostSamples (config * config.Config ) {
Original file line number Diff line number Diff line change 7
7
"strings"
8
8
"sync"
9
9
10
- "github.com/newrelic/infra-integrations-sdk/data/metric"
11
- "github.com/newrelic/infra-integrations-sdk/integration"
10
+ "github.com/newrelic/infra-integrations-sdk/v3/ data/metric"
11
+ "github.com/newrelic/infra-integrations-sdk/v3/ integration"
12
12
"github.com/newrelic/nri-vsphere/internal/config"
13
13
14
14
logrus "github.com/sirupsen/logrus"
Original file line number Diff line number Diff line change 4
4
package process
5
5
6
6
import (
7
- "github.com/newrelic/infra-integrations-sdk/data/metric"
7
+ "github.com/newrelic/infra-integrations-sdk/v3/ data/metric"
8
8
"github.com/newrelic/nri-vsphere/internal/config"
9
9
)
10
10
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ import (
11
11
"github.com/vmware/govmomi/vim25/mo"
12
12
"github.com/vmware/govmomi/vim25/types"
13
13
14
- "github.com/newrelic/infra-integrations-sdk/data/metric"
15
- "github.com/newrelic/infra-integrations-sdk/integration"
14
+ "github.com/newrelic/infra-integrations-sdk/v3/ data/metric"
15
+ "github.com/newrelic/infra-integrations-sdk/v3/ integration"
16
16
)
17
17
18
18
const invalidFile = - 1
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
"github.com/vmware/govmomi/vim25/mo"
12
12
"github.com/vmware/govmomi/vim25/types"
13
13
14
- "github.com/newrelic/infra-integrations-sdk/integration"
14
+ "github.com/newrelic/infra-integrations-sdk/v3/ integration"
15
15
"github.com/newrelic/nri-vsphere/internal/process/testdata"
16
16
)
17
17
Original file line number Diff line number Diff line change 8
8
"strconv"
9
9
"strings"
10
10
11
- "github.com/newrelic/infra-integrations-sdk/data/metric"
11
+ "github.com/newrelic/infra-integrations-sdk/v3/ data/metric"
12
12
"github.com/newrelic/nri-vsphere/internal/config"
13
13
)
14
14
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package process
2
2
3
3
import (
4
4
"context"
5
- "github.com/newrelic/infra-integrations-sdk/integration"
5
+ "github.com/newrelic/infra-integrations-sdk/v3/ integration"
6
6
"github.com/newrelic/nri-vsphere/internal/client"
7
7
"github.com/newrelic/nri-vsphere/internal/collect"
8
8
"github.com/newrelic/nri-vsphere/internal/config"
You can’t perform that action at this time.
0 commit comments