Skip to content

Commit 7b2d1a0

Browse files
committed
Update imports for containerd move
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
1 parent 14b444c commit 7b2d1a0

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# cgroups
22

3-
[![Build Status](https://travis-ci.org/crosbymichael/cgroups.svg?branch=master)](https://travis-ci.org/crosbymichael/cgroups)
3+
[![Build Status](https://travis-ci.org/containerd/cgroups.svg?branch=master)](https://travis-ci.org/containerd/cgroups)
44

5-
[![codecov](https://codecov.io/gh/crosbymichael/cgroups/branch/master/graph/badge.svg)](https://codecov.io/gh/crosbymichael/cgroups)
5+
[![codecov](https://codecov.io/gh/containerd/cgroups/branch/master/graph/badge.svg)](https://codecov.io/gh/containerd/cgroups)
66

77
Go package for creating, managing, inspecting, and destroying cgroups.
88
The resources format for settings on the cgroup uses the OCI runtime-spec found

prometheus/blkio.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package prometheus
22

33
import (
4-
"github.com/crosbymichael/cgroups"
4+
"github.com/containerd/cgroups"
55
metrics "github.com/docker/go-metrics"
66
"github.com/prometheus/client_golang/prometheus"
77
)

prometheus/cpu.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package prometheus
33
import (
44
"strconv"
55

6-
"github.com/crosbymichael/cgroups"
6+
"github.com/containerd/cgroups"
77
metrics "github.com/docker/go-metrics"
88
"github.com/prometheus/client_golang/prometheus"
99
)

prometheus/hugetlb.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package prometheus
22

33
import (
4-
"github.com/crosbymichael/cgroups"
4+
"github.com/containerd/cgroups"
55
metrics "github.com/docker/go-metrics"
66
"github.com/prometheus/client_golang/prometheus"
77
)

prometheus/memory.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package prometheus
22

33
import (
4-
"github.com/crosbymichael/cgroups"
4+
"github.com/containerd/cgroups"
55
metrics "github.com/docker/go-metrics"
66
"github.com/prometheus/client_golang/prometheus"
77
)

prometheus/metric.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package prometheus
22

33
import (
4-
"github.com/crosbymichael/cgroups"
4+
"github.com/containerd/cgroups"
55
metrics "github.com/docker/go-metrics"
66
"github.com/prometheus/client_golang/prometheus"
77
)

prometheus/metrics.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"sync"
77

88
"github.com/Sirupsen/logrus"
9-
"github.com/crosbymichael/cgroups"
9+
"github.com/containerd/cgroups"
1010
metrics "github.com/docker/go-metrics"
1111
"github.com/prometheus/client_golang/prometheus"
1212
)

prometheus/oom.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"golang.org/x/sys/unix"
77

88
"github.com/Sirupsen/logrus"
9-
"github.com/crosbymichael/cgroups"
9+
"github.com/containerd/cgroups"
1010
metrics "github.com/docker/go-metrics"
1111
)
1212

prometheus/pids.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package prometheus
22

33
import (
4-
"github.com/crosbymichael/cgroups"
4+
"github.com/containerd/cgroups"
55
metrics "github.com/docker/go-metrics"
66
"github.com/prometheus/client_golang/prometheus"
77
)

0 commit comments

Comments
 (0)