parent
61f8bc77ec
commit
fc93f641b0
8 changed files with 102 additions and 0 deletions
@ -0,0 +1,41 @@ |
||||
# Copyright 2018, OpenCensus Authors |
||||
# |
||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
||||
# you may not use this file except in compliance with the License. |
||||
# You may obtain a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, |
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
# See the License for the specific language governing permissions and |
||||
# limitations under the License. |
||||
|
||||
package(default_visibility = ["//visibility:public"]) |
||||
|
||||
load("@org_pubref_rules_protobuf//go:rules.bzl", "go_proto_library") |
||||
|
||||
proto_library( |
||||
name = "resource_proto", |
||||
srcs = ["resource.proto"], |
||||
) |
||||
|
||||
cc_proto_library( |
||||
name = "resource_proto_cc", |
||||
deps = [":resource_proto"], |
||||
) |
||||
|
||||
java_proto_library( |
||||
name = "resource_proto_java", |
||||
deps = [":resource_proto"], |
||||
) |
||||
|
||||
go_proto_library( |
||||
name = "resource_proto_go", |
||||
protos = ["resource.proto"], |
||||
pb_options = [ |
||||
# omit the go_package declared in proto files to make bazel works as expect |
||||
"paths=source_relative", |
||||
], |
||||
) |
@ -0,0 +1,33 @@ |
||||
// Copyright 2018, OpenCensus Authors |
||||
// |
||||
// Licensed under the Apache License, Version 2.0 (the "License"); |
||||
// you may not use this file except in compliance with the License. |
||||
// You may obtain a copy of the License at |
||||
// |
||||
// http://www.apache.org/licenses/LICENSE-2.0 |
||||
// |
||||
// Unless required by applicable law or agreed to in writing, software |
||||
// distributed under the License is distributed on an "AS IS" BASIS, |
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
// See the License for the specific language governing permissions and |
||||
// limitations under the License. |
||||
|
||||
syntax = "proto3"; |
||||
|
||||
package opencensus.proto.resource.v1; |
||||
|
||||
option go_package = "github.com/census-instrumentation/opencensus-proto/gen-go/resource/v1"; |
||||
|
||||
option java_multiple_files = true; |
||||
option java_package = "io.opencensus.proto.resource.v1"; |
||||
option java_outer_classname = "ResourceProto"; |
||||
|
||||
// Resource information. |
||||
message Resource { |
||||
|
||||
// Type identifier for the resource. |
||||
string type = 1; |
||||
|
||||
// Set of labels that describe the resource. |
||||
map<string,string> labels = 2; |
||||
} |
Loading…
Reference in new issue