Update paths to new repository location.
This commit is contained in:
parent
5a29c27491
commit
989a398e79
|
@ -1,8 +1,8 @@
|
|||
language: go
|
||||
|
||||
before_script:
|
||||
- go get -v github.com/matttproud/golang_instrumentation
|
||||
- go get -v github.com/prometheus/client_golang
|
||||
|
||||
script:
|
||||
- go build -a -v github.com/matttproud/golang_instrumentation/...
|
||||
- go test -v github.com/matttproud/golang_instrumentation/...
|
||||
- go build -a -v github.com/prometheus/client_golang/...
|
||||
- go test -v github.com/prometheus/client_golang/...
|
||||
|
|
|
@ -30,7 +30,7 @@ addresses. There are probably numerous Go language idiomatic changes that need
|
|||
to be made, but this task has been deferred for now.
|
||||
|
||||
# Continuous Integration
|
||||
[![Build Status](https://secure.travis-ci.org/matttproud/golang_instrumentation.png?branch=master)](http://travis-ci.org/matttproud/golang_instrumentation)
|
||||
[![Build Status](https://secure.travis-ci.org/prometheus/client_golang.png?branch=master)](http://travis-ci.org/matttproud/golang_instrumentation)
|
||||
|
||||
# Documentation
|
||||
Please read the [generated documentation](http://go.pkgdoc.org/launchpad.net/gocheck)
|
||||
|
|
|
@ -18,9 +18,9 @@ package main
|
|||
|
||||
import (
|
||||
"flag"
|
||||
"github.com/matttproud/golang_instrumentation"
|
||||
"github.com/matttproud/golang_instrumentation/maths"
|
||||
"github.com/matttproud/golang_instrumentation/metrics"
|
||||
"github.com/prometheus/client_golang"
|
||||
"github.com/prometheus/client_golang/maths"
|
||||
"github.com/prometheus/client_golang/metrics"
|
||||
"math/rand"
|
||||
"net/http"
|
||||
"time"
|
||||
|
|
|
@ -14,7 +14,7 @@ package main
|
|||
|
||||
import (
|
||||
"flag"
|
||||
"github.com/matttproud/golang_instrumentation"
|
||||
"github.com/prometheus/client_golang"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ import (
|
|||
"bytes"
|
||||
"container/heap"
|
||||
"fmt"
|
||||
"github.com/matttproud/golang_instrumentation/utility"
|
||||
"github.com/prometheus/client_golang/utility"
|
||||
"math"
|
||||
"sort"
|
||||
"sync"
|
||||
|
|
|
@ -10,8 +10,8 @@ package metrics
|
|||
|
||||
import (
|
||||
. "github.com/matttproud/gocheck"
|
||||
"github.com/matttproud/golang_instrumentation/maths"
|
||||
"github.com/matttproud/golang_instrumentation/utility"
|
||||
"github.com/prometheus/client_golang/maths"
|
||||
"github.com/prometheus/client_golang/utility"
|
||||
"time"
|
||||
)
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ package metrics
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/matttproud/golang_instrumentation/utility"
|
||||
"github.com/prometheus/client_golang/utility"
|
||||
"sync"
|
||||
)
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ package metrics
|
|||
|
||||
import (
|
||||
"encoding/json"
|
||||
"github.com/matttproud/golang_instrumentation/utility/test"
|
||||
"github.com/prometheus/client_golang/utility/test"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
|
|
@ -10,8 +10,8 @@ package metrics
|
|||
|
||||
import (
|
||||
"container/heap"
|
||||
"github.com/matttproud/golang_instrumentation/maths"
|
||||
"github.com/matttproud/golang_instrumentation/utility"
|
||||
"github.com/prometheus/client_golang/maths"
|
||||
"github.com/prometheus/client_golang/utility"
|
||||
"time"
|
||||
)
|
||||
|
||||
|
|
|
@ -11,8 +11,8 @@ package metrics
|
|||
import (
|
||||
"container/heap"
|
||||
. "github.com/matttproud/gocheck"
|
||||
"github.com/matttproud/golang_instrumentation/maths"
|
||||
"github.com/matttproud/golang_instrumentation/utility"
|
||||
"github.com/prometheus/client_golang/maths"
|
||||
"github.com/prometheus/client_golang/utility"
|
||||
)
|
||||
|
||||
func (s *S) TestEvictOldest(c *C) {
|
||||
|
|
|
@ -10,7 +10,7 @@ package metrics
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/matttproud/golang_instrumentation/utility"
|
||||
"github.com/prometheus/client_golang/utility"
|
||||
"sync"
|
||||
)
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ package metrics
|
|||
|
||||
import (
|
||||
"encoding/json"
|
||||
"github.com/matttproud/golang_instrumentation/utility/test"
|
||||
"github.com/prometheus/client_golang/utility/test"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ package metrics
|
|||
import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
"github.com/matttproud/golang_instrumentation/utility"
|
||||
"github.com/prometheus/client_golang/utility"
|
||||
"math"
|
||||
"strconv"
|
||||
"sync"
|
||||
|
|
|
@ -10,7 +10,7 @@ package metrics
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/matttproud/golang_instrumentation/maths"
|
||||
"github.com/prometheus/client_golang/maths"
|
||||
"math"
|
||||
"sync"
|
||||
)
|
||||
|
|
|
@ -10,7 +10,7 @@ package metrics
|
|||
|
||||
import (
|
||||
. "github.com/matttproud/gocheck"
|
||||
"github.com/matttproud/golang_instrumentation/maths"
|
||||
"github.com/prometheus/client_golang/maths"
|
||||
)
|
||||
|
||||
func (s *S) TestTallyingPercentileEstimatorMinimum(c *C) {
|
||||
|
|
|
@ -14,8 +14,8 @@ import (
|
|||
"encoding/json"
|
||||
"flag"
|
||||
"fmt"
|
||||
"github.com/matttproud/golang_instrumentation/metrics"
|
||||
"github.com/matttproud/golang_instrumentation/utility"
|
||||
"github.com/prometheus/client_golang/metrics"
|
||||
"github.com/prometheus/client_golang/utility"
|
||||
"io"
|
||||
"log"
|
||||
"net/http"
|
||||
|
|
|
@ -9,8 +9,8 @@ package registry
|
|||
import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
"github.com/matttproud/golang_instrumentation/metrics"
|
||||
"github.com/matttproud/golang_instrumentation/utility/test"
|
||||
"github.com/prometheus/client_golang/metrics"
|
||||
"github.com/prometheus/client_golang/utility/test"
|
||||
"io"
|
||||
"net/http"
|
||||
"testing"
|
||||
|
|
|
@ -9,8 +9,8 @@ the LICENSE file.
|
|||
package registry
|
||||
|
||||
import (
|
||||
"github.com/matttproud/golang_instrumentation/maths"
|
||||
"github.com/matttproud/golang_instrumentation/metrics"
|
||||
"github.com/prometheus/client_golang/maths"
|
||||
"github.com/prometheus/client_golang/metrics"
|
||||
"time"
|
||||
)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
package utility
|
||||
|
||||
import (
|
||||
"github.com/matttproud/golang_instrumentation/utility/test"
|
||||
"github.com/prometheus/client_golang/utility/test"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue