Skip to content

Commit cb17208

Browse files
committed
update imports
1 parent e5b5742 commit cb17208

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

loki/batch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"github.com/golang/snappy"
88
json "github.com/json-iterator/go"
99

10-
"github.com/grafana/loki-client-go/pkg/logproto"
10+
"github.com/netobserv/loki-client-go/pkg/logproto"
1111
)
1212

1313
// batch holds pending log streams waiting to be sent to Loki, and it's used

loki/batch_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/stretchr/testify/assert"
1010
"github.com/stretchr/testify/require"
1111

12-
"github.com/grafana/loki-client-go/pkg/logproto"
12+
"github.com/netobserv/loki-client-go/pkg/logproto"
1313
)
1414

1515
func TestBatch_add(t *testing.T) {

loki/client.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ import (
1313
"sync"
1414
"time"
1515

16-
"github.com/grafana/loki-client-go/pkg/backoff"
16+
"github.com/netobserv/loki-client-go/pkg/backoff"
1717
"github.com/prometheus/prometheus/promql/parser"
1818

19-
"github.com/grafana/loki-client-go/pkg/metric"
19+
"github.com/netobserv/loki-client-go/pkg/metric"
2020

2121
"github.com/go-kit/kit/log"
2222
"github.com/go-kit/kit/log/level"
@@ -26,8 +26,8 @@ import (
2626
"github.com/prometheus/common/model"
2727
"github.com/prometheus/common/version"
2828

29-
"github.com/grafana/loki-client-go/pkg/helpers"
30-
"github.com/grafana/loki-client-go/pkg/logproto"
29+
"github.com/netobserv/loki-client-go/pkg/helpers"
30+
"github.com/netobserv/loki-client-go/pkg/logproto"
3131
)
3232

3333
const (

loki/client_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ import (
1313
"github.com/stretchr/testify/assert"
1414
"github.com/stretchr/testify/require"
1515

16-
"github.com/grafana/loki-client-go/pkg/backoff"
17-
"github.com/grafana/loki-client-go/pkg/httputil"
18-
"github.com/grafana/loki-client-go/pkg/labelutil"
19-
"github.com/grafana/loki-client-go/pkg/urlutil"
16+
"github.com/netobserv/loki-client-go/pkg/backoff"
17+
"github.com/netobserv/loki-client-go/pkg/httputil"
18+
"github.com/netobserv/loki-client-go/pkg/labelutil"
19+
"github.com/netobserv/loki-client-go/pkg/urlutil"
2020
"github.com/prometheus/client_golang/prometheus"
2121
"github.com/prometheus/client_golang/prometheus/testutil"
2222
"github.com/prometheus/common/config"
2323
"github.com/prometheus/common/model"
2424

25-
"github.com/grafana/loki-client-go/pkg/logproto"
25+
"github.com/netobserv/loki-client-go/pkg/logproto"
2626
)
2727

2828
var logEntries = []entry{

loki/config.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"flag"
55
"time"
66

7-
"github.com/grafana/loki-client-go/pkg/backoff"
8-
"github.com/grafana/loki-client-go/pkg/labelutil"
9-
"github.com/grafana/loki-client-go/pkg/urlutil"
7+
"github.com/netobserv/loki-client-go/pkg/backoff"
8+
"github.com/netobserv/loki-client-go/pkg/labelutil"
9+
"github.com/netobserv/loki-client-go/pkg/urlutil"
1010
"github.com/prometheus/common/config"
1111
)
1212

loki/config_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"testing"
77
"time"
88

9-
"github.com/grafana/loki-client-go/pkg/backoff"
10-
"github.com/grafana/loki-client-go/pkg/urlutil"
9+
"github.com/netobserv/loki-client-go/pkg/backoff"
10+
"github.com/netobserv/loki-client-go/pkg/urlutil"
1111
"github.com/stretchr/testify/assert"
1212
"github.com/stretchr/testify/require"
1313

pkg/logproto/logproto.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ syntax = "proto3";
22

33
package logproto;
44

5-
option go_package = "github.com/grafana/loki-client-go/pkg/logproto";
5+
option go_package = "github.com/netobserv/loki-client-go/pkg/logproto";
66

77
import "google/protobuf/timestamp.proto";
88
import "github.com/gogo/protobuf/gogoproto/gogo.proto";

pkg/metric/metricvec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"sync"
55
"time"
66

7-
"github.com/grafana/loki-client-go/pkg/labelutil"
7+
"github.com/netobserv/loki-client-go/pkg/labelutil"
88
"github.com/prometheus/client_golang/prometheus"
99
"github.com/prometheus/common/model"
1010
)

0 commit comments

Comments
 (0)