summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes
diff options
context:
space:
mode:
Diffstat (limited to 'src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes')
-rw-r--r--src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes.go6
-rw-r--r--src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes_test.go4
-rw-r--r--src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod.go4
-rw-r--r--src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod_test.go2
-rw-r--r--src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service.go4
-rw-r--r--src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service_test.go2
-rw-r--r--src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/sim_test.go2
7 files changed, 12 insertions, 12 deletions
diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes.go
index ba4f058515..926ed0c07f 100644
--- a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes.go
+++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes.go
@@ -11,9 +11,9 @@ import (
"sync"
"time"
- "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
- "github.com/netdata/go.d.plugin/logger"
- "github.com/netdata/go.d.plugin/pkg/k8sclient"
+ "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
+ "github.com/netdata/netdata/go/go.d.plugin/logger"
+ "github.com/netdata/netdata/go/go.d.plugin/pkg/k8sclient"
"github.com/ilyam8/hashstructure"
corev1 "k8s.io/api/core/v1"
diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes_test.go
index dcaecb8feb..cd16a7b111 100644
--- a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes_test.go
+++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes_test.go
@@ -7,8 +7,8 @@ import (
"os"
"testing"
- "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
- "github.com/netdata/go.d.plugin/pkg/k8sclient"
+ "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
+ "github.com/netdata/netdata/go/go.d.plugin/pkg/k8sclient"
"github.com/stretchr/testify/assert"
corev1 "k8s.io/api/core/v1"
diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod.go
index a6391f7f6c..fb6d04c168 100644
--- a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod.go
+++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod.go
@@ -9,8 +9,8 @@ import (
"strconv"
"strings"
- "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
- "github.com/netdata/go.d.plugin/logger"
+ "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
+ "github.com/netdata/netdata/go/go.d.plugin/logger"
corev1 "k8s.io/api/core/v1"
"k8s.io/client-go/tools/cache"
diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod_test.go
index 87506243bc..985b2e33c2 100644
--- a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod_test.go
+++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod_test.go
@@ -9,7 +9,7 @@ import (
"testing"
"time"
- "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
+ "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
"github.com/stretchr/testify/assert"
corev1 "k8s.io/api/core/v1"
diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service.go
index 975c5f84d8..a970a396f0 100644
--- a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service.go
+++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service.go
@@ -9,8 +9,8 @@ import (
"strconv"
"strings"
- "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
- "github.com/netdata/go.d.plugin/logger"
+ "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
+ "github.com/netdata/netdata/go/go.d.plugin/logger"
corev1 "k8s.io/api/core/v1"
"k8s.io/client-go/tools/cache"
diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service_test.go
index a62d66f099..f15db4cf66 100644
--- a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service_test.go
+++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service_test.go
@@ -9,7 +9,7 @@ import (
"testing"
"time"
- "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
+ "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
"github.com/stretchr/testify/assert"
corev1 "k8s.io/api/core/v1"
diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/sim_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/sim_test.go
index af66c549f3..1a46ece5f7 100644
--- a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/sim_test.go
+++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/sim_test.go
@@ -8,7 +8,7 @@ import (
"testing"
"time"
- "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
+ "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"