Fix imports order
This commit is contained in:
parent
82810f13cd
commit
b5d8d0c991
@ -15,8 +15,9 @@
|
|||||||
package collector
|
package collector
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/google/cadvisor/info/v1"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/google/cadvisor/info/v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Config struct {
|
type Config struct {
|
||||||
|
@ -15,8 +15,9 @@
|
|||||||
package collector
|
package collector
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/google/cadvisor/info/v1"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/google/cadvisor/info/v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
// TODO(vmarmol): Export to a custom metrics type when that is available.
|
// TODO(vmarmol): Export to a custom metrics type when that is available.
|
||||||
|
@ -16,11 +16,12 @@ package redis
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
redis "github.com/garyburd/redigo/redis"
|
redis "github.com/garyburd/redigo/redis"
|
||||||
info "github.com/google/cadvisor/info/v1"
|
info "github.com/google/cadvisor/info/v1"
|
||||||
storage "github.com/google/cadvisor/storage"
|
storage "github.com/google/cadvisor/storage"
|
||||||
"sync"
|
|
||||||
"time"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type redisStorage struct {
|
type redisStorage struct {
|
||||||
|
Loading…
Reference in New Issue
Block a user