From ea547514314b515da4de297fd3c90143ec376681 Mon Sep 17 00:00:00 2001 From: "Matt T. Proud" Date: Sun, 27 Jan 2013 18:49:45 +0100 Subject: [PATCH] Update import paths to new location. This repository moved from matttproud/prometheus to prometheus/prometheus, and all import paths need to be updated. --- api/query.go | 4 ++-- config/config.go | 2 +- config/helpers.go | 2 +- config/load_test.go | 10 +++++----- config/parser.y.go | 2 +- config/printer.go | 2 +- main.go | 14 +++++++------- model/dto.go | 2 +- retrieval/format/discriminator_test.go | 2 +- retrieval/format/processor.go | 2 +- retrieval/format/processor0_0_1.go | 2 +- retrieval/format/processor0_0_1_test.go | 4 ++-- retrieval/format/result.go | 2 +- retrieval/scheduler_test.go | 2 +- retrieval/target.go | 4 ++-- retrieval/targetmanager.go | 6 +++--- retrieval/targetmanager_test.go | 4 ++-- retrieval/targetpool.go | 2 +- retrieval/targetpool_test.go | 2 +- rules/ast/ast.go | 2 +- rules/ast/functions.go | 2 +- rules/ast/persistence_adapter.go | 4 ++-- rules/helpers.go | 4 ++-- rules/lexer.l.go | 2 +- rules/load.go | 2 +- rules/manager.go | 4 ++-- rules/parser.y.go | 4 ++-- rules/rules.go | 4 ++-- rules/rules_test.go | 4 ++-- rules/testdata.go | 6 +++--- storage/metric/interface.go | 2 +- storage/metric/leveldb/diagnostics.go | 10 +++++----- storage/metric/leveldb/interface_test.go | 2 +- storage/metric/leveldb/leveldb_test.go | 6 +++--- storage/metric/leveldb/lifecycle.go | 4 ++-- storage/metric/leveldb/mutable.go | 8 ++++---- storage/metric/leveldb/reading.go | 12 ++++++------ storage/metric/leveldb/regressions_test.go | 2 +- storage/metric/leveldb/rule_integration_test.go | 6 +++--- storage/metric/leveldb/type.go | 4 ++-- storage/raw/index/interface.go | 2 +- storage/raw/index/leveldb/interface_test.go | 2 +- storage/raw/index/leveldb/leveldb.go | 6 +++--- storage/raw/interface.go | 2 +- storage/raw/leveldb/interface_test.go | 2 +- storage/raw/leveldb/leveldb.go | 4 ++-- 46 files changed, 91 insertions(+), 91 deletions(-) diff --git a/api/query.go b/api/query.go index b041232474..71853ca7a1 100644 --- a/api/query.go +++ b/api/query.go @@ -3,8 +3,8 @@ package api import ( "code.google.com/p/gorest" "errors" - "github.com/matttproud/prometheus/rules" - "github.com/matttproud/prometheus/rules/ast" + "github.com/prometheus/prometheus/rules" + "github.com/prometheus/prometheus/rules/ast" "sort" "time" ) diff --git a/config/config.go b/config/config.go index d501e53577..ac866ef7c7 100644 --- a/config/config.go +++ b/config/config.go @@ -3,7 +3,7 @@ package config import ( "errors" "fmt" - "github.com/matttproud/prometheus/model" + "github.com/prometheus/prometheus/model" "time" ) diff --git a/config/helpers.go b/config/helpers.go index 450f12b102..ab84032f7e 100644 --- a/config/helpers.go +++ b/config/helpers.go @@ -2,7 +2,7 @@ package config import ( "fmt" - "github.com/matttproud/prometheus/model" + "github.com/prometheus/prometheus/model" "log" "regexp" "strconv" diff --git a/config/load_test.go b/config/load_test.go index 61f93edca9..3c03110b50 100644 --- a/config/load_test.go +++ b/config/load_test.go @@ -14,12 +14,12 @@ package config import ( - "testing" + "testing" ) func TestLoadFromFile(t *testing.T) { - _, err := LoadFromFile("file-does-not-exist.conf") - if err == nil { - t.Error(err) - } + _, err := LoadFromFile("file-does-not-exist.conf") + if err == nil { + t.Error(err) + } } diff --git a/config/parser.y.go b/config/parser.y.go index d6b0e45037..abbc24d5ba 100644 --- a/config/parser.y.go +++ b/config/parser.y.go @@ -3,7 +3,7 @@ package config import "fmt" - import "github.com/matttproud/prometheus/model" + import "github.com/prometheus/prometheus/model" //line parser.y:8 type yySymType struct { diff --git a/config/printer.go b/config/printer.go index fe4e17f5de..992c518949 100644 --- a/config/printer.go +++ b/config/printer.go @@ -2,7 +2,7 @@ package config import ( "fmt" - "github.com/matttproud/prometheus/model" + "github.com/prometheus/prometheus/model" "strings" ) diff --git a/main.go b/main.go index 2f9c2b4403..0672c41c2c 100644 --- a/main.go +++ b/main.go @@ -16,14 +16,14 @@ package main import ( "code.google.com/p/gorest" "flag" - "github.com/matttproud/prometheus/api" - "github.com/matttproud/prometheus/config" - "github.com/matttproud/prometheus/retrieval" - "github.com/matttproud/prometheus/retrieval/format" - "github.com/matttproud/prometheus/rules" - "github.com/matttproud/prometheus/rules/ast" - "github.com/matttproud/prometheus/storage/metric/leveldb" "github.com/prometheus/client_golang" + "github.com/prometheus/prometheus/api" + "github.com/prometheus/prometheus/config" + "github.com/prometheus/prometheus/retrieval" + "github.com/prometheus/prometheus/retrieval/format" + "github.com/prometheus/prometheus/rules" + "github.com/prometheus/prometheus/rules/ast" + "github.com/prometheus/prometheus/storage/metric/leveldb" "log" "net/http" "os" diff --git a/model/dto.go b/model/dto.go index 113ba0676d..e9695cd13e 100644 --- a/model/dto.go +++ b/model/dto.go @@ -18,7 +18,7 @@ import ( "crypto/md5" "encoding/hex" "errors" - dto "github.com/matttproud/prometheus/model/generated" + dto "github.com/prometheus/prometheus/model/generated" "io" "sort" "time" diff --git a/retrieval/format/discriminator_test.go b/retrieval/format/discriminator_test.go index edd8148c85..e7e48036b0 100644 --- a/retrieval/format/discriminator_test.go +++ b/retrieval/format/discriminator_test.go @@ -15,7 +15,7 @@ package format import ( "fmt" - "github.com/matttproud/prometheus/utility/test" + "github.com/prometheus/prometheus/utility/test" "net/http" "testing" ) diff --git a/retrieval/format/processor.go b/retrieval/format/processor.go index 16719218d2..cff9012d40 100644 --- a/retrieval/format/processor.go +++ b/retrieval/format/processor.go @@ -14,7 +14,7 @@ package format import ( - "github.com/matttproud/prometheus/model" + "github.com/prometheus/prometheus/model" "io" ) diff --git a/retrieval/format/processor0_0_1.go b/retrieval/format/processor0_0_1.go index 4990f4c248..bda8d962eb 100644 --- a/retrieval/format/processor0_0_1.go +++ b/retrieval/format/processor0_0_1.go @@ -16,7 +16,7 @@ package format import ( "encoding/json" "fmt" - "github.com/matttproud/prometheus/model" + "github.com/prometheus/prometheus/model" "io" "io/ioutil" "time" diff --git a/retrieval/format/processor0_0_1_test.go b/retrieval/format/processor0_0_1_test.go index c7382354ee..19b98fea38 100644 --- a/retrieval/format/processor0_0_1_test.go +++ b/retrieval/format/processor0_0_1_test.go @@ -16,8 +16,8 @@ package format import ( "container/list" "fmt" - "github.com/matttproud/prometheus/model" - "github.com/matttproud/prometheus/utility/test" + "github.com/prometheus/prometheus/model" + "github.com/prometheus/prometheus/utility/test" "io/ioutil" "strings" "testing" diff --git a/retrieval/format/result.go b/retrieval/format/result.go index c04f744a9d..c7ee6dcfdd 100644 --- a/retrieval/format/result.go +++ b/retrieval/format/result.go @@ -14,7 +14,7 @@ package format import ( - "github.com/matttproud/prometheus/model" + "github.com/prometheus/prometheus/model" ) // Result encapsulates the outcome from processing a given sample from a diff --git a/retrieval/scheduler_test.go b/retrieval/scheduler_test.go index c02253c609..bed42929c8 100644 --- a/retrieval/scheduler_test.go +++ b/retrieval/scheduler_test.go @@ -14,7 +14,7 @@ package retrieval import ( - "github.com/matttproud/prometheus/utility/test" + "github.com/prometheus/prometheus/utility/test" "testing" "time" ) diff --git a/retrieval/target.go b/retrieval/target.go index d0e0dc567a..c7187d4ecb 100644 --- a/retrieval/target.go +++ b/retrieval/target.go @@ -14,9 +14,9 @@ package retrieval import ( "fmt" - "github.com/matttproud/prometheus/model" - "github.com/matttproud/prometheus/retrieval/format" "github.com/prometheus/client_golang/metrics" + "github.com/prometheus/prometheus/model" + "github.com/prometheus/prometheus/retrieval/format" "net/http" "time" ) diff --git a/retrieval/targetmanager.go b/retrieval/targetmanager.go index bfe5f4cacd..08c28a6385 100644 --- a/retrieval/targetmanager.go +++ b/retrieval/targetmanager.go @@ -15,9 +15,9 @@ package retrieval import ( "container/heap" - "github.com/matttproud/prometheus/config" - "github.com/matttproud/prometheus/model" - "github.com/matttproud/prometheus/retrieval/format" + "github.com/prometheus/prometheus/config" + "github.com/prometheus/prometheus/model" + "github.com/prometheus/prometheus/retrieval/format" "log" "time" ) diff --git a/retrieval/targetmanager_test.go b/retrieval/targetmanager_test.go index 62c19fe258..7eb6909c82 100644 --- a/retrieval/targetmanager_test.go +++ b/retrieval/targetmanager_test.go @@ -14,8 +14,8 @@ package retrieval import ( - "github.com/matttproud/prometheus/retrieval/format" - "github.com/matttproud/prometheus/utility/test" + "github.com/prometheus/prometheus/retrieval/format" + "github.com/prometheus/prometheus/utility/test" "testing" "time" ) diff --git a/retrieval/targetpool.go b/retrieval/targetpool.go index fed9ea8cfc..1737709dd3 100644 --- a/retrieval/targetpool.go +++ b/retrieval/targetpool.go @@ -2,7 +2,7 @@ package retrieval import ( "container/heap" - "github.com/matttproud/prometheus/retrieval/format" + "github.com/prometheus/prometheus/retrieval/format" "log" "time" ) diff --git a/retrieval/targetpool_test.go b/retrieval/targetpool_test.go index 07197b7179..71afb7ef59 100644 --- a/retrieval/targetpool_test.go +++ b/retrieval/targetpool_test.go @@ -15,7 +15,7 @@ package retrieval import ( "container/heap" - "github.com/matttproud/prometheus/utility/test" + "github.com/prometheus/prometheus/utility/test" "testing" "time" ) diff --git a/rules/ast/ast.go b/rules/ast/ast.go index 6fc589d659..3b74edc71e 100644 --- a/rules/ast/ast.go +++ b/rules/ast/ast.go @@ -3,7 +3,7 @@ package ast import ( "errors" "fmt" - "github.com/matttproud/prometheus/model" + "github.com/prometheus/prometheus/model" "log" "math" "sort" diff --git a/rules/ast/functions.go b/rules/ast/functions.go index 5c14ae4d44..f3e0930ceb 100644 --- a/rules/ast/functions.go +++ b/rules/ast/functions.go @@ -3,7 +3,7 @@ package ast import ( "errors" "fmt" - "github.com/matttproud/prometheus/model" + "github.com/prometheus/prometheus/model" "time" ) diff --git a/rules/ast/persistence_adapter.go b/rules/ast/persistence_adapter.go index 36f634413b..681f4c0b78 100644 --- a/rules/ast/persistence_adapter.go +++ b/rules/ast/persistence_adapter.go @@ -2,8 +2,8 @@ package ast import ( "flag" - "github.com/matttproud/prometheus/model" - "github.com/matttproud/prometheus/storage/metric" + "github.com/prometheus/prometheus/model" + "github.com/prometheus/prometheus/storage/metric" "time" ) diff --git a/rules/helpers.go b/rules/helpers.go index 3dca4ef211..9f0951bc60 100644 --- a/rules/helpers.go +++ b/rules/helpers.go @@ -3,8 +3,8 @@ package rules import ( "errors" "fmt" - "github.com/matttproud/prometheus/model" - "github.com/matttproud/prometheus/rules/ast" + "github.com/prometheus/prometheus/model" + "github.com/prometheus/prometheus/rules/ast" "regexp" "strconv" "time" diff --git a/rules/lexer.l.go b/rules/lexer.l.go index a6e6876af0..aceeaec4ae 100644 --- a/rules/lexer.l.go +++ b/rules/lexer.l.go @@ -10,7 +10,7 @@ import ( "sort" ) import ( -"github.com/matttproud/prometheus/model" +"github.com/prometheus/prometheus/model" "strconv" ) diff --git a/rules/load.go b/rules/load.go index 7b71599b26..bf12fdde87 100644 --- a/rules/load.go +++ b/rules/load.go @@ -3,7 +3,7 @@ package rules import ( "errors" "fmt" - "github.com/matttproud/prometheus/rules/ast" + "github.com/prometheus/prometheus/rules/ast" "io" "os" "strings" diff --git a/rules/manager.go b/rules/manager.go index 16380f93bb..c804400582 100644 --- a/rules/manager.go +++ b/rules/manager.go @@ -14,8 +14,8 @@ package rules import ( - "github.com/matttproud/prometheus/config" - "github.com/matttproud/prometheus/rules/ast" + "github.com/prometheus/prometheus/config" + "github.com/prometheus/prometheus/rules/ast" "log" "time" ) diff --git a/rules/parser.y.go b/rules/parser.y.go index f1712842c2..7e6b3c5212 100644 --- a/rules/parser.y.go +++ b/rules/parser.y.go @@ -3,8 +3,8 @@ package rules import "fmt" - import "github.com/matttproud/prometheus/model" - import "github.com/matttproud/prometheus/rules/ast" + import "github.com/prometheus/prometheus/model" + import "github.com/prometheus/prometheus/rules/ast" //line parser.y:9 type yySymType struct { diff --git a/rules/rules.go b/rules/rules.go index 1dda711fc5..cccadbd793 100644 --- a/rules/rules.go +++ b/rules/rules.go @@ -2,8 +2,8 @@ package rules import ( "fmt" - "github.com/matttproud/prometheus/model" - "github.com/matttproud/prometheus/rules/ast" + "github.com/prometheus/prometheus/model" + "github.com/prometheus/prometheus/rules/ast" "time" ) diff --git a/rules/rules_test.go b/rules/rules_test.go index b9e9c3bbe1..c02fac0294 100644 --- a/rules/rules_test.go +++ b/rules/rules_test.go @@ -2,8 +2,8 @@ package rules import ( "fmt" - "github.com/matttproud/prometheus/rules/ast" - "github.com/matttproud/prometheus/storage/metric/leveldb" + "github.com/prometheus/prometheus/rules/ast" + "github.com/prometheus/prometheus/storage/metric/leveldb" "io/ioutil" "os" "strings" diff --git a/rules/testdata.go b/rules/testdata.go index 54c73afd71..4d5ab70e92 100644 --- a/rules/testdata.go +++ b/rules/testdata.go @@ -1,9 +1,9 @@ package rules import ( - "github.com/matttproud/prometheus/model" - "github.com/matttproud/prometheus/rules/ast" - "github.com/matttproud/prometheus/storage/metric" + "github.com/prometheus/prometheus/model" + "github.com/prometheus/prometheus/rules/ast" + "github.com/prometheus/prometheus/storage/metric" "time" ) diff --git a/storage/metric/interface.go b/storage/metric/interface.go index c4a230e7c9..a6c2c688cc 100644 --- a/storage/metric/interface.go +++ b/storage/metric/interface.go @@ -14,7 +14,7 @@ package metric import ( - "github.com/matttproud/prometheus/model" + "github.com/prometheus/prometheus/model" "time" ) diff --git a/storage/metric/leveldb/diagnostics.go b/storage/metric/leveldb/diagnostics.go index 3c38f18107..de6a725289 100644 --- a/storage/metric/leveldb/diagnostics.go +++ b/storage/metric/leveldb/diagnostics.go @@ -16,11 +16,11 @@ package leveldb import ( "code.google.com/p/goprotobuf/proto" "errors" - "github.com/matttproud/prometheus/coding" - "github.com/matttproud/prometheus/coding/indexable" - "github.com/matttproud/prometheus/model" - dto "github.com/matttproud/prometheus/model/generated" - "github.com/matttproud/prometheus/utility" + "github.com/prometheus/prometheus/coding" + "github.com/prometheus/prometheus/coding/indexable" + "github.com/prometheus/prometheus/model" + dto "github.com/prometheus/prometheus/model/generated" + "github.com/prometheus/prometheus/utility" "log" ) diff --git a/storage/metric/leveldb/interface_test.go b/storage/metric/leveldb/interface_test.go index f40994fef4..bbd54a9235 100644 --- a/storage/metric/leveldb/interface_test.go +++ b/storage/metric/leveldb/interface_test.go @@ -14,7 +14,7 @@ package leveldb import ( - "github.com/matttproud/prometheus/storage/metric" + "github.com/prometheus/prometheus/storage/metric" "testing" ) diff --git a/storage/metric/leveldb/leveldb_test.go b/storage/metric/leveldb/leveldb_test.go index 91ff6df74a..d914ac28cd 100644 --- a/storage/metric/leveldb/leveldb_test.go +++ b/storage/metric/leveldb/leveldb_test.go @@ -16,9 +16,9 @@ package leveldb import ( "code.google.com/p/goprotobuf/proto" "fmt" - "github.com/matttproud/prometheus/model" - dto "github.com/matttproud/prometheus/model/generated" - "github.com/matttproud/prometheus/utility/test" + "github.com/prometheus/prometheus/model" + dto "github.com/prometheus/prometheus/model/generated" + "github.com/prometheus/prometheus/utility/test" "io/ioutil" "math" "math/rand" diff --git a/storage/metric/leveldb/lifecycle.go b/storage/metric/leveldb/lifecycle.go index a9938193a5..e09c83f10f 100644 --- a/storage/metric/leveldb/lifecycle.go +++ b/storage/metric/leveldb/lifecycle.go @@ -14,8 +14,8 @@ package leveldb import ( - index "github.com/matttproud/prometheus/storage/raw/index/leveldb" - storage "github.com/matttproud/prometheus/storage/raw/leveldb" + index "github.com/prometheus/prometheus/storage/raw/index/leveldb" + storage "github.com/prometheus/prometheus/storage/raw/leveldb" "io" "log" ) diff --git a/storage/metric/leveldb/mutable.go b/storage/metric/leveldb/mutable.go index 13a482d932..ab927ed455 100644 --- a/storage/metric/leveldb/mutable.go +++ b/storage/metric/leveldb/mutable.go @@ -15,10 +15,10 @@ package leveldb import ( "code.google.com/p/goprotobuf/proto" - "github.com/matttproud/prometheus/coding" - "github.com/matttproud/prometheus/coding/indexable" - "github.com/matttproud/prometheus/model" - dto "github.com/matttproud/prometheus/model/generated" + "github.com/prometheus/prometheus/coding" + "github.com/prometheus/prometheus/coding/indexable" + "github.com/prometheus/prometheus/model" + dto "github.com/prometheus/prometheus/model/generated" "time" ) diff --git a/storage/metric/leveldb/reading.go b/storage/metric/leveldb/reading.go index 0f83188afd..2906ca145c 100644 --- a/storage/metric/leveldb/reading.go +++ b/storage/metric/leveldb/reading.go @@ -15,12 +15,12 @@ package leveldb import ( "code.google.com/p/goprotobuf/proto" - "github.com/matttproud/prometheus/coding" - "github.com/matttproud/prometheus/coding/indexable" - "github.com/matttproud/prometheus/model" - dto "github.com/matttproud/prometheus/model/generated" - "github.com/matttproud/prometheus/storage/metric" - "github.com/matttproud/prometheus/utility" + "github.com/prometheus/prometheus/coding" + "github.com/prometheus/prometheus/coding/indexable" + "github.com/prometheus/prometheus/model" + dto "github.com/prometheus/prometheus/model/generated" + "github.com/prometheus/prometheus/storage/metric" + "github.com/prometheus/prometheus/utility" "time" ) diff --git a/storage/metric/leveldb/regressions_test.go b/storage/metric/leveldb/regressions_test.go index e89985127d..94559bc46b 100644 --- a/storage/metric/leveldb/regressions_test.go +++ b/storage/metric/leveldb/regressions_test.go @@ -14,7 +14,7 @@ package leveldb import ( - "github.com/matttproud/prometheus/model" + "github.com/prometheus/prometheus/model" "io/ioutil" "os" "testing" diff --git a/storage/metric/leveldb/rule_integration_test.go b/storage/metric/leveldb/rule_integration_test.go index a8db95fb59..c7cf6b3ad6 100644 --- a/storage/metric/leveldb/rule_integration_test.go +++ b/storage/metric/leveldb/rule_integration_test.go @@ -15,9 +15,9 @@ package leveldb import ( "fmt" - "github.com/matttproud/prometheus/model" - "github.com/matttproud/prometheus/storage/metric" - "github.com/matttproud/prometheus/utility/test" + "github.com/prometheus/prometheus/model" + "github.com/prometheus/prometheus/storage/metric" + "github.com/prometheus/prometheus/utility/test" "io/ioutil" "os" "testing" diff --git a/storage/metric/leveldb/type.go b/storage/metric/leveldb/type.go index 92d84121bb..e5c7be6f75 100644 --- a/storage/metric/leveldb/type.go +++ b/storage/metric/leveldb/type.go @@ -14,8 +14,8 @@ package leveldb import ( - index "github.com/matttproud/prometheus/storage/raw/index/leveldb" - storage "github.com/matttproud/prometheus/storage/raw/leveldb" + index "github.com/prometheus/prometheus/storage/raw/index/leveldb" + storage "github.com/prometheus/prometheus/storage/raw/leveldb" ) type LevelDBMetricPersistence struct { diff --git a/storage/raw/index/interface.go b/storage/raw/index/interface.go index 9118dd60f8..7ffecd7f08 100644 --- a/storage/raw/index/interface.go +++ b/storage/raw/index/interface.go @@ -14,7 +14,7 @@ package index import ( - "github.com/matttproud/prometheus/coding" + "github.com/prometheus/prometheus/coding" ) type MembershipIndex interface { diff --git a/storage/raw/index/leveldb/interface_test.go b/storage/raw/index/leveldb/interface_test.go index bc3a6b298c..3b005d7457 100644 --- a/storage/raw/index/leveldb/interface_test.go +++ b/storage/raw/index/leveldb/interface_test.go @@ -14,7 +14,7 @@ package leveldb import ( - "github.com/matttproud/prometheus/storage/raw/index" + "github.com/prometheus/prometheus/storage/raw/index" "testing" ) diff --git a/storage/raw/index/leveldb/leveldb.go b/storage/raw/index/leveldb/leveldb.go index 0d5a73d6db..df5456c952 100644 --- a/storage/raw/index/leveldb/leveldb.go +++ b/storage/raw/index/leveldb/leveldb.go @@ -14,9 +14,9 @@ package leveldb import ( - "github.com/matttproud/prometheus/coding" - dto "github.com/matttproud/prometheus/model/generated" - "github.com/matttproud/prometheus/storage/raw/leveldb" + "github.com/prometheus/prometheus/coding" + dto "github.com/prometheus/prometheus/model/generated" + "github.com/prometheus/prometheus/storage/raw/leveldb" ) var ( diff --git a/storage/raw/interface.go b/storage/raw/interface.go index 502390edef..5f2539bccb 100644 --- a/storage/raw/interface.go +++ b/storage/raw/interface.go @@ -14,7 +14,7 @@ package raw import ( - "github.com/matttproud/prometheus/coding" + "github.com/prometheus/prometheus/coding" ) type Pair struct { diff --git a/storage/raw/leveldb/interface_test.go b/storage/raw/leveldb/interface_test.go index ce556287f2..25158470fd 100644 --- a/storage/raw/leveldb/interface_test.go +++ b/storage/raw/leveldb/interface_test.go @@ -14,7 +14,7 @@ package leveldb import ( - "github.com/matttproud/prometheus/storage/raw" + "github.com/prometheus/prometheus/storage/raw" "testing" ) diff --git a/storage/raw/leveldb/leveldb.go b/storage/raw/leveldb/leveldb.go index 52afd506ed..264a4ada1d 100644 --- a/storage/raw/leveldb/leveldb.go +++ b/storage/raw/leveldb/leveldb.go @@ -15,8 +15,8 @@ package leveldb import ( "github.com/jmhodges/levigo" - "github.com/matttproud/prometheus/coding" - "github.com/matttproud/prometheus/storage/raw" + "github.com/prometheus/prometheus/coding" + "github.com/prometheus/prometheus/storage/raw" "io" )