Add agent trace service proto definitions. (#79)
* Add agent trace service proto definitions. * Update BUILD and import. * Leave a TODO for adding go_proto_library rule.pull/85/head
parent
ad5efe554e
commit
3d9e99dce3
3 changed files with 137 additions and 0 deletions
@ -0,0 +1,54 @@ |
|||||||
|
# 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("@grpc_java//:java_grpc_library.bzl", "java_grpc_library") |
||||||
|
|
||||||
|
proto_library( |
||||||
|
name = "trace_service_proto", |
||||||
|
srcs = ["trace_service.proto"], |
||||||
|
deps = [ |
||||||
|
"//opencensus/proto/agent/common/v1:common_proto", |
||||||
|
"//opencensus/proto/trace/v1:trace_proto", |
||||||
|
"//opencensus/proto/trace/v1:trace_config_proto", |
||||||
|
], |
||||||
|
) |
||||||
|
|
||||||
|
cc_proto_library( |
||||||
|
name = "trace_service_proto_cc", |
||||||
|
deps = [":trace_service_proto"], |
||||||
|
) |
||||||
|
|
||||||
|
java_proto_library( |
||||||
|
name = "trace_service_proto_java", |
||||||
|
deps = [":trace_service_proto"], |
||||||
|
) |
||||||
|
|
||||||
|
java_grpc_library( |
||||||
|
name = "trace_service_grpc_java", |
||||||
|
srcs = [":trace_service_proto"], |
||||||
|
deps = [":trace_service_proto_java"], |
||||||
|
) |
||||||
|
|
||||||
|
# TODO(songya): resolve dependencies and add go_proto_library if it's needed. |
||||||
|
#go_proto_library( |
||||||
|
# name = "trace_service_proto_go", |
||||||
|
# compilers = ["@io_bazel_rules_go//proto:go_grpc"], |
||||||
|
# importpath = |
||||||
|
# "github.com/census-instrumentation/opencensus-proto/gen-go/agent/trace/v1", |
||||||
|
# proto = ":trace_service_proto", |
||||||
|
# deps = [ |
||||||
|
# ], |
||||||
|
#) |
@ -0,0 +1,68 @@ |
|||||||
|
// 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"; |
||||||
|
|
||||||
|
// NOTE: This proto is experimental and is subject to change at this point. |
||||||
|
// Please do not use it at the moment. |
||||||
|
|
||||||
|
package opencensus.proto.agent.trace.v1; |
||||||
|
|
||||||
|
import "opencensus/proto/agent/common/v1/common.proto"; |
||||||
|
import "opencensus/proto/trace/v1/trace.proto"; |
||||||
|
import "opencensus/proto/trace/v1/trace_config.proto"; |
||||||
|
|
||||||
|
option java_multiple_files = true; |
||||||
|
option java_package = "io.opencensus.proto.agent.trace.v1"; |
||||||
|
option java_outer_classname = "TraceServiceProto"; |
||||||
|
|
||||||
|
option go_package = "github.com/census-instrumentation/opencensus-proto/gen-go/agent/trace/v1"; |
||||||
|
|
||||||
|
service TraceService { |
||||||
|
|
||||||
|
// After the initialization this RPC must be kept alive for the |
||||||
|
// entire life of the application. Agent pushes configs to the |
||||||
|
// application via a stream of responses. |
||||||
|
rpc Config(stream ConfigTraceServiceRequest) returns (stream ConfigTraceServiceResponse) {} |
||||||
|
|
||||||
|
// Allow to export Spans. |
||||||
|
// For performance reason, it is recommended to keep this RPC |
||||||
|
// alive for the entire life of the application. |
||||||
|
rpc Export(stream ExportTraceServiceRequest) returns (stream ExportTraceServiceResponse) {} |
||||||
|
} |
||||||
|
|
||||||
|
message ConfigTraceServiceRequest { |
||||||
|
// Identifier data effectively is a structured metadata. |
||||||
|
// This is required only in the first message on the stream. |
||||||
|
opencensus.proto.agent.common.v1.Node node = 1; |
||||||
|
|
||||||
|
// Current configuration. |
||||||
|
opencensus.proto.trace.v1.TraceConfig config = 2; |
||||||
|
} |
||||||
|
|
||||||
|
message ConfigTraceServiceResponse { |
||||||
|
// Requested updated configuration. |
||||||
|
opencensus.proto.trace.v1.TraceConfig config = 2; |
||||||
|
} |
||||||
|
|
||||||
|
message ExportTraceServiceRequest { |
||||||
|
// Identifier data effectively is a structured metadata. |
||||||
|
// This is required only in the first message on the stream. |
||||||
|
opencensus.proto.agent.common.v1.Node node = 1; |
||||||
|
|
||||||
|
repeated opencensus.proto.trace.v1.Span spans = 2; |
||||||
|
} |
||||||
|
|
||||||
|
message ExportTraceServiceResponse { |
||||||
|
} |
Loading…
Reference in new issue