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