This repository was archived by the owner on Oct 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 17 files changed +191
-28
lines changed Expand file tree Collapse file tree 17 files changed +191
-28
lines changed Original file line number Diff line number Diff line change
1
+ # Copyright 2017, OpenCensus Authors
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ package (default_visibility = ["//visibility:public" ])
Original file line number Diff line number Diff line change @@ -63,7 +63,6 @@ In WORKSPACE, add:
63
63
```
64
64
git_repository(
65
65
name = "io_opencensus_proto",
66
- strip_prefix = "src",
67
66
tag = "v0.2.0", # CURRENT_OPENCENSUS_PROTO_VERSION
68
67
remote = "https://github.com/census-instrumentation/opencensus-proto",
69
68
)
73
72
```
74
73
http_archive(
75
74
name = "io_opencensus_proto",
76
- strip_prefix = "opencensus-proto-master/src ",
75
+ strip_prefix = "opencensus-proto-master",
77
76
urls = ["https://github.com/census-instrumentation/opencensus-proto/archive/master.zip"],
78
77
)
79
78
```
@@ -84,8 +83,8 @@ proto_library(
84
83
name = " foo_proto" ,
85
84
srcs = [" foo.proto" ],
86
85
deps = [
87
- " @io_opencensus_proto//opencensus/proto/metrics/v1:metrics_proto" ,
88
- " @io_opencensus_proto//opencensus/proto/trace/v1:trace_proto" ,
86
+ " @io_opencensus_proto//src/ opencensus/proto/metrics/v1:metrics_proto" ,
87
+ " @io_opencensus_proto//src/ opencensus/proto/trace/v1:trace_proto" ,
89
88
# etc.
90
89
],
91
90
)
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ # Copyright 2017, OpenCensus Authors
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ package (default_visibility = ["//visibility:public" ])
16
+
17
+ alias (
18
+ name = "go_default_library" ,
19
+ actual = "//src/opencensus/proto/agent/common/v1:common_proto_go" ,
20
+ )
Original file line number Diff line number Diff line change
1
+ # Copyright 2017, OpenCensus Authors
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ package (default_visibility = ["//visibility:public" ])
16
+
17
+ alias (
18
+ name = "go_default_library" ,
19
+ actual = "//src/opencensus/proto/agent/metrics/v1:metrics_service_proto" ,
20
+ )
Original file line number Diff line number Diff line change
1
+ # Copyright 2017, OpenCensus Authors
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ package (default_visibility = ["//visibility:public" ])
16
+
17
+ alias (
18
+ name = "go_default_library" ,
19
+ actual = "//src/opencensus/proto/agent/trace/v1:trace_service_proto_go" ,
20
+ )
Original file line number Diff line number Diff line change
1
+ # Copyright 2017, OpenCensus Authors
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ package (default_visibility = ["//visibility:public" ])
16
+
17
+ alias (
18
+ name = "go_default_library" ,
19
+ actual = "//src/opencensus/proto/metrics/v1:metrics_proto_go" ,
20
+ )
Original file line number Diff line number Diff line change
1
+ # Copyright 2017, OpenCensus Authors
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ package (default_visibility = ["//visibility:public" ])
16
+
17
+ alias (
18
+ name = "go_default_library" ,
19
+ actual = "//src/opencensus/proto/resource/v1:resource_proto_go" ,
20
+ )
Original file line number Diff line number Diff line change
1
+ # Copyright 2017, OpenCensus Authors
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ package (default_visibility = ["//visibility:public" ])
16
+
17
+ alias (
18
+ name = "go_default_library" ,
19
+ actual = "//src/opencensus/proto/stats/v1:stats_proto_go" ,
20
+ )
Original file line number Diff line number Diff line change
1
+ # Copyright 2017, OpenCensus Authors
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ package (default_visibility = ["//visibility:public" ])
16
+
17
+ alias (
18
+ name = "go_default_library" ,
19
+ actual = "//src/opencensus/proto/trace/v1:trace_and_config_proto_go" ,
20
+ )
You can’t perform that action at this time.
0 commit comments