Skip to content

Commit

Permalink
change references to forked path
Browse files Browse the repository at this point in the history
  • Loading branch information
cmangum committed Mar 25, 2019
1 parent b3815f5 commit 6894b9f
Show file tree
Hide file tree
Showing 67 changed files with 113 additions and 113 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ ARCH ?= $$(uname -s | tr A-Z a-z)
METALINTER_CONCURRENCY ?= 4
GOVERSION := 1.10.2
GP := /gopath
MAIN_PKG := github.com/atlassian/gostatsd/cmd/gostatsd
CLUSTER_PKG := github.com/atlassian/gostatsd/cmd/cluster
MAIN_PKG := github.com/varsitytutors/gostatsd/cmd/gostatsd
CLUSTER_PKG := github.com/varsitytutors/gostatsd/cmd/cluster
PROTOBUF_VERSION ?= 3.6.1

setup: setup-ci
Expand Down Expand Up @@ -97,7 +97,7 @@ fuzz-setup:
go get -v -u github.com/dvyukov/go-fuzz/go-fuzz-build

fuzz:
go-fuzz-build github.com/atlassian/gostatsd/pkg/statsd
go-fuzz-build github.com/varsitytutors/gostatsd/pkg/statsd
go-fuzz -bin=./statsd-fuzz.zip -workdir=test_fixtures/lexer_fuzz

watch:
Expand All @@ -112,7 +112,7 @@ docker: pb/gostatsd.pb.go
docker run \
--rm \
-v "$(GOPATH)":"$(GP)" \
-w "$(GP)/src/github.com/atlassian/gostatsd" \
-w "$(GP)/src/github.com/varsitytutors/gostatsd" \
-e GOPATH="$(GP)" \
-e CGO_ENABLED=0 \
golang:$(GOVERSION) \
Expand All @@ -125,7 +125,7 @@ docker-race: pb/gostatsd.pb.go
docker run \
--rm \
-v "$(GOPATH)":"$(GP)" \
-w "$(GP)/src/github.com/atlassian/gostatsd" \
-w "$(GP)/src/github.com/varsitytutors/gostatsd" \
-e GOPATH="$(GP)" \
golang:$(GOVERSION) \
go build -race -o build/bin/linux/$(BINARY_NAME) $(GOBUILD_VERSION_ARGS) $(MAIN_PKG)
Expand All @@ -137,7 +137,7 @@ docker-symbols: pb/gostatsd.pb.go
docker run \
--rm \
-v "$(GOPATH)":"$(GP)" \
-w "$(GP)/src/github.com/atlassian/gostatsd" \
-w "$(GP)/src/github.com/varsitytutors/gostatsd" \
-e GOPATH="$(GP)" \
-e CGO_ENABLED=0 \
golang:$(GOVERSION) \
Expand Down
2 changes: 1 addition & 1 deletion cmd/cluster/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/spf13/pflag"

"github.com/atlassian/gostatsd/pkg/cluster/nodes"
"github.com/varsitytutors/gostatsd/pkg/cluster/nodes"
)

// Cluster is everything for running a single node in a cluster
Expand Down
8 changes: 4 additions & 4 deletions cmd/gostatsd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ import (
"syscall"
"time"

"github.com/atlassian/gostatsd"
"github.com/atlassian/gostatsd/pkg/backends"
"github.com/atlassian/gostatsd/pkg/cloudproviders"
"github.com/atlassian/gostatsd/pkg/statsd"
"github.com/varsitytutors/gostatsd"
"github.com/varsitytutors/gostatsd/pkg/backends"
"github.com/varsitytutors/gostatsd/pkg/cloudproviders"
"github.com/varsitytutors/gostatsd/pkg/statsd"

"github.com/sirupsen/logrus"
"github.com/spf13/pflag"
Expand Down
2 changes: 1 addition & 1 deletion cmd/tester/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ GOBUILD_VERSION_ARGS := -ldflags "-s -X $(VERSION_VAR)=$(REPO_VERSION) -X $(GIT_
BINARY_NAME := statsd-tester
IMAGE_NAME := atlassianlabs/$(BINARY_NAME)
ARCH ?= darwin
MAIN_PKG := github.com/atlassian/gostatsd/cmd/tester
MAIN_PKG := github.com/varsitytutors/gostatsd/cmd/tester

setup:
go get -u github.com/githubnemo/CompileDaemon
Expand Down
4 changes: 2 additions & 2 deletions cmd/tester/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"runtime/pprof"
"time"

"github.com/atlassian/gostatsd/pkg/fakesocket"
"github.com/atlassian/gostatsd/pkg/statsd"
"github.com/varsitytutors/gostatsd/pkg/fakesocket"
"github.com/varsitytutors/gostatsd/pkg/statsd"

log "github.com/sirupsen/logrus"
"github.com/spf13/pflag"
Expand Down
2 changes: 1 addition & 1 deletion cmd/tester/sender.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sync/atomic"
"time"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"

log "github.com/sirupsen/logrus"
)
Expand Down
2 changes: 1 addition & 1 deletion cover.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ declare -a packages=('' \
# Test each package and append coverage profile info to coverage.out
for pkg in "${packages[@]}"
do
go test -v -covermode=count -coverprofile=coverage_tmp.out "github.com/atlassian/gostatsd/$pkg" || ERROR="Error testing $pkg"
go test -v -covermode=count -coverprofile=coverage_tmp.out "github.com/varsitytutors/gostatsd/$pkg" || ERROR="Error testing $pkg"
tail -n +2 coverage_tmp.out >> coverage.out 2> /dev/null ||:
done

Expand Down
2 changes: 1 addition & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package: github.com/atlassian/gostatsd
package: github.com/varsitytutors/gostatsd
import:
- package: github.com/sirupsen/logrus
- package: github.com/spf13/pflag
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/atlassian/gostatsd
module github.com/varsitytutors/gostatsd

require (
github.com/ash2k/stager v0.0.0-20170622123058-6e9c7b0eacd4
Expand Down
16 changes: 8 additions & 8 deletions pkg/backends/backends.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ package backends
import (
"fmt"

"github.com/atlassian/gostatsd"
"github.com/atlassian/gostatsd/pkg/backends/cloudwatch"
"github.com/atlassian/gostatsd/pkg/backends/datadog"
"github.com/atlassian/gostatsd/pkg/backends/graphite"
"github.com/atlassian/gostatsd/pkg/backends/newrelic"
"github.com/atlassian/gostatsd/pkg/backends/null"
"github.com/atlassian/gostatsd/pkg/backends/statsdaemon"
"github.com/atlassian/gostatsd/pkg/backends/stdout"
"github.com/varsitytutors/gostatsd"
"github.com/varsitytutors/gostatsd/pkg/backends/cloudwatch"
"github.com/varsitytutors/gostatsd/pkg/backends/datadog"
"github.com/varsitytutors/gostatsd/pkg/backends/graphite"
"github.com/varsitytutors/gostatsd/pkg/backends/newrelic"
"github.com/varsitytutors/gostatsd/pkg/backends/null"
"github.com/varsitytutors/gostatsd/pkg/backends/statsdaemon"
"github.com/varsitytutors/gostatsd/pkg/backends/stdout"

log "github.com/sirupsen/logrus"
"github.com/spf13/viper"
Expand Down
2 changes: 1 addition & 1 deletion pkg/backends/cloudwatch/cloudwatch.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"time"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"
log "github.com/sirupsen/logrus"

"github.com/aws/aws-sdk-go/aws/session"
Expand Down
2 changes: 1 addition & 1 deletion pkg/backends/cloudwatch/cloudwatch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"testing"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"

"github.com/aws/aws-sdk-go/service/cloudwatch"
"github.com/aws/aws-sdk-go/service/cloudwatch/cloudwatchiface"
Expand Down
4 changes: 2 additions & 2 deletions pkg/backends/datadog/datadog.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import (
"sync/atomic"
"time"

"github.com/atlassian/gostatsd"
"github.com/atlassian/gostatsd/pkg/stats"
"github.com/varsitytutors/gostatsd"
"github.com/varsitytutors/gostatsd/pkg/stats"

"github.com/cenkalti/backoff"
jsoniter "github.com/json-iterator/go"
Expand Down
2 changes: 1 addition & 1 deletion pkg/backends/datadog/datadog_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"testing"
"time"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
Expand Down
2 changes: 1 addition & 1 deletion pkg/backends/datadog/flush.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package datadog
import (
"fmt"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"
)

type metricType string
Expand Down
4 changes: 2 additions & 2 deletions pkg/backends/graphite/graphite.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"sync"
"time"

"github.com/atlassian/gostatsd"
"github.com/atlassian/gostatsd/pkg/backends/sender"
"github.com/varsitytutors/gostatsd"
"github.com/varsitytutors/gostatsd/pkg/backends/sender"

log "github.com/sirupsen/logrus"
"github.com/spf13/viper"
Expand Down
2 changes: 1 addition & 1 deletion pkg/backends/graphite/graphite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"testing"
"time"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"

"github.com/ash2k/stager/wait"
"github.com/stretchr/testify/assert"
Expand Down
2 changes: 1 addition & 1 deletion pkg/backends/newrelic/flush.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"strconv"
"strings"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"
)

// flush represents a send operation.
Expand Down
4 changes: 2 additions & 2 deletions pkg/backends/newrelic/newrelic.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import (
"sync/atomic"
"time"

"github.com/atlassian/gostatsd"
"github.com/atlassian/gostatsd/pkg/stats"
"github.com/varsitytutors/gostatsd"
"github.com/varsitytutors/gostatsd/pkg/stats"

"github.com/cenkalti/backoff"
log "github.com/sirupsen/logrus"
Expand Down
2 changes: 1 addition & 1 deletion pkg/backends/newrelic/newrelic_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"testing"
"time"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
Expand Down
2 changes: 1 addition & 1 deletion pkg/backends/null/null.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package null
import (
"context"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"

"github.com/spf13/viper"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/backends/sender/sender.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"sync"
"time"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"

log "github.com/sirupsen/logrus"
)
Expand Down
4 changes: 2 additions & 2 deletions pkg/backends/statsdaemon/statsdaemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"sync"
"time"

"github.com/atlassian/gostatsd"
"github.com/atlassian/gostatsd/pkg/backends/sender"
"github.com/varsitytutors/gostatsd"
"github.com/varsitytutors/gostatsd/pkg/backends/sender"

log "github.com/sirupsen/logrus"
"github.com/spf13/viper"
Expand Down
2 changes: 1 addition & 1 deletion pkg/backends/statsdaemon/statsdaemon_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"testing"
"time"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
Expand Down
2 changes: 1 addition & 1 deletion pkg/backends/stdout/stdout.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"time"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"

log "github.com/sirupsen/logrus"
"github.com/spf13/viper"
Expand Down
4 changes: 2 additions & 2 deletions pkg/cloudproviders/aws/aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"sync/atomic"
"time"

"github.com/atlassian/gostatsd"
"github.com/atlassian/gostatsd/pkg/stats"
"github.com/varsitytutors/gostatsd"
"github.com/varsitytutors/gostatsd/pkg/stats"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awserr"
Expand Down
4 changes: 2 additions & 2 deletions pkg/cloudproviders/cloudproviders.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package cloudproviders
import (
"fmt"

"github.com/atlassian/gostatsd"
"github.com/atlassian/gostatsd/pkg/cloudproviders/aws"
"github.com/varsitytutors/gostatsd"
"github.com/varsitytutors/gostatsd/pkg/cloudproviders/aws"

"github.com/sirupsen/logrus"
"github.com/spf13/viper"
Expand Down
2 changes: 1 addition & 1 deletion pkg/pool/metric_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package pool
import (
"sync"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"
)

// MetricPool is a strongly typed wrapper around a sync.Pool for *gostatsd.Metric, it provides
Expand Down
2 changes: 1 addition & 1 deletion pkg/stats/channel_stats_watcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"time"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"
)

// ChannelStatsWatcher reports metrics about channel usage to a Statser
Expand Down
2 changes: 1 addition & 1 deletion pkg/stats/heartbeat.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package stats
import (
"context"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"
)

// HeartBeater periodically sends a gauge for heartbeat purposes
Expand Down
2 changes: 1 addition & 1 deletion pkg/stats/statser.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package stats
import (
"time"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"
)

// Statser is the interface for sending metrics
Expand Down
2 changes: 1 addition & 1 deletion pkg/stats/statser_internal.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sync/atomic"
"time"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"
)

// InternalStatser is a Statser which sends metrics to a handler on a best
Expand Down
2 changes: 1 addition & 1 deletion pkg/stats/statser_logging.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package stats
import (
"time"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"

log "github.com/sirupsen/logrus"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/stats/statser_null.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package stats
import (
"time"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"
)

// NullStatser is a null implementation of Statser, intended primarily
Expand Down
2 changes: 1 addition & 1 deletion pkg/stats/statser_tagged.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package stats
import (
"time"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"
)

// TaggedStatser adds tags and submits metrics to another Statser
Expand Down
2 changes: 1 addition & 1 deletion pkg/stats/timer.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package stats
import (
"time"

"github.com/atlassian/gostatsd"
"github.com/varsitytutors/gostatsd"
)

// Timer times an operation and submits a timing or gauge metric
Expand Down
Loading

0 comments on commit 6894b9f

Please sign in to comment.