This repository was archived by the owner on Jul 31, 2023. It is now read-only.
File tree 21 files changed +20
-20
lines changed
21 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ import (
22
22
23
23
"go.opencensus.io/examples/grpc/exporter"
24
24
pb "go.opencensus.io/examples/grpc/proto"
25
- ocgrpc "go.opencensus.io/plugin/grpc "
26
- "go.opencensus.io/plugin/grpc /grpcstats"
25
+ "go.opencensus.io/plugin/ocgrpc "
26
+ "go.opencensus.io/plugin/ocgrpc /grpcstats"
27
27
"go.opencensus.io/stats/view"
28
28
"go.opencensus.io/zpages"
29
29
"golang.org/x/net/context"
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ import (
23
23
24
24
"go.opencensus.io/examples/grpc/exporter"
25
25
pb "go.opencensus.io/examples/grpc/proto"
26
- ocgrpc "go.opencensus.io/plugin/grpc "
27
- "go.opencensus.io/plugin/grpc /grpcstats"
26
+ "go.opencensus.io/plugin/ocgrpc "
27
+ "go.opencensus.io/plugin/ocgrpc /grpcstats"
28
28
"go.opencensus.io/stats/view"
29
29
"go.opencensus.io/zpages"
30
30
"golang.org/x/net/context"
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- package grpc_test
15
+ package ocgrpc_test
16
16
17
17
import (
18
18
"log"
19
19
20
- ocgrpc "go.opencensus.io/plugin/grpc "
21
- "go.opencensus.io/plugin/grpc /grpcstats"
20
+ "go.opencensus.io/plugin/ocgrpc "
21
+ "go.opencensus.io/plugin/ocgrpc /grpcstats"
22
22
"google.golang.org/grpc"
23
23
)
24
24
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- // Package grpc contains OpenCensus stats and trace
15
+ // Package ocgrpc contains OpenCensus stats and trace
16
16
// integrations with gRPC.
17
- package grpc
17
+ package ocgrpc // import "go.opencensus.io/plugin/ocgrpc"
18
18
19
19
import (
20
20
"golang.org/x/net/context"
21
21
22
- "go.opencensus.io/plugin/grpc /grpcstats"
23
- "go.opencensus.io/plugin/grpc /grpctrace"
22
+ "go.opencensus.io/plugin/ocgrpc /grpcstats"
23
+ "go.opencensus.io/plugin/ocgrpc /grpctrace"
24
24
25
25
"google.golang.org/grpc/stats"
26
26
)
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- package grpc
15
+ package ocgrpc
16
16
17
17
import (
18
18
"testing"
19
19
"time"
20
20
21
21
"golang.org/x/net/context"
22
22
23
- "go.opencensus.io/plugin/grpc /grpcstats"
23
+ "go.opencensus.io/plugin/ocgrpc /grpcstats"
24
24
"go.opencensus.io/trace"
25
25
26
26
"google.golang.org/grpc/stats"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ package grpcstats_test
17
17
import (
18
18
"log"
19
19
20
- "go.opencensus.io/plugin/grpc /grpcstats"
20
+ "go.opencensus.io/plugin/ocgrpc /grpcstats"
21
21
"google.golang.org/grpc"
22
22
)
23
23
Original file line number Diff line number Diff line change 14
14
//
15
15
16
16
// Package grpcstats provides OpenCensus stats support for gRPC clients and servers.
17
- package grpcstats // import "go.opencensus.io/plugin/grpc /grpcstats"
17
+ package grpcstats // import "go.opencensus.io/plugin/ocgrpc /grpcstats"
18
18
19
19
import (
20
20
"log"
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ package grpctrace_test
17
17
import (
18
18
"log"
19
19
20
- "go.opencensus.io/plugin/grpc /grpctrace"
20
+ "go.opencensus.io/plugin/ocgrpc /grpctrace"
21
21
"google.golang.org/grpc"
22
22
)
23
23
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
15
15
// Package grpctrace is a package to assist with tracing incoming and outgoing gRPC requests.
16
- package grpctrace
16
+ package grpctrace // import "go.opencensus.io/plugin/ocgrpc/grpctrace"
17
17
18
18
import (
19
19
"strings"
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ import (
21
21
"testing"
22
22
"time"
23
23
24
- "go.opencensus.io/plugin/grpc /grpctrace"
25
- testpb "go.opencensus.io/plugin/grpc /grpctrace/testdata"
24
+ "go.opencensus.io/plugin/ocgrpc /grpctrace"
25
+ testpb "go.opencensus.io/plugin/ocgrpc /grpctrace/testdata"
26
26
"go.opencensus.io/trace"
27
27
"golang.org/x/net/context"
28
28
"google.golang.org/grpc"
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import (
27
27
"time"
28
28
29
29
"go.opencensus.io/internal"
30
- "go.opencensus.io/plugin/grpc /grpcstats"
30
+ "go.opencensus.io/plugin/ocgrpc /grpcstats"
31
31
"go.opencensus.io/stats/view"
32
32
)
33
33
You can’t perform that action at this time.
0 commit comments