google-cloud-trace 0.38.3 → 0.39.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/google/cloud/trace/v2/doc/google/devtools/cloudtrace/v2/trace.rb +44 -9
- data/lib/google/cloud/trace/v2/trace_service_client.rb +12 -6
- data/lib/google/cloud/trace/version.rb +1 -1
- data/lib/google/devtools/cloudtrace/v1/trace_pb.rb +12 -12
- data/lib/google/devtools/cloudtrace/v1/trace_services_pb.rb +29 -29
- data/lib/google/devtools/cloudtrace/v2/trace_pb.rb +29 -19
- data/lib/google/devtools/cloudtrace/v2/tracing_pb.rb +3 -3
- data/lib/google/devtools/cloudtrace/v2/tracing_services_pb.rb +24 -25
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0f15f8177b7c46712bfa65de95e962f1d33ee86e7772af0252fa0f992f842095
|
|
4
|
+
data.tar.gz: d2eef2c11e859c11a73a573a95a10f9b755d230770b9c91f5ed758ddbefdb3b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 921009ab5e7b4c391fc663d5f2e9c81c5122b4101d53f13664a89bdae60ac2cf115f684d6fe6950df36ad5d77d688ab74c45adf2c818e0740d5f145ba61269cf
|
|
7
|
+
data.tar.gz: c4536a16227854be8b0dbb8cc42b3741cbe3e52729bdb27b85e7dc032e224fd03ac95d1d9b6fe0594d61443bea50e3a8a8c3b9319bc18597c3a3e33ec361a42b
|
data/CHANGELOG.md
CHANGED
|
@@ -25,7 +25,7 @@ module Google
|
|
|
25
25
|
# gaps or overlaps between spans in a trace.
|
|
26
26
|
# @!attribute [rw] name
|
|
27
27
|
# @return [String]
|
|
28
|
-
# The resource name of the span in the following format:
|
|
28
|
+
# Required. The resource name of the span in the following format:
|
|
29
29
|
#
|
|
30
30
|
# projects/[PROJECT_ID]/traces/[TRACE_ID]/spans/[SPAN_ID]
|
|
31
31
|
#
|
|
@@ -36,14 +36,14 @@ module Google
|
|
|
36
36
|
# is a 16-character hexadecimal encoding of an 8-byte array.
|
|
37
37
|
# @!attribute [rw] span_id
|
|
38
38
|
# @return [String]
|
|
39
|
-
# The [SPAN_ID] portion of the span's resource name.
|
|
39
|
+
# Required. The [SPAN_ID] portion of the span's resource name.
|
|
40
40
|
# @!attribute [rw] parent_span_id
|
|
41
41
|
# @return [String]
|
|
42
42
|
# The [SPAN_ID] of this span's parent span. If this is a root span,
|
|
43
43
|
# then this field must be empty.
|
|
44
44
|
# @!attribute [rw] display_name
|
|
45
45
|
# @return [Google::Devtools::Cloudtrace::V2::TruncatableString]
|
|
46
|
-
# A description of the span's operation (up to 128 bytes).
|
|
46
|
+
# Required. A description of the span's operation (up to 128 bytes).
|
|
47
47
|
# Stackdriver Trace displays the description in the
|
|
48
48
|
# Google Cloud Platform Console.
|
|
49
49
|
# For example, the display name can be a qualified method name or a file name
|
|
@@ -52,12 +52,12 @@ module Google
|
|
|
52
52
|
# This makes it easier to correlate spans in different traces.
|
|
53
53
|
# @!attribute [rw] start_time
|
|
54
54
|
# @return [Google::Protobuf::Timestamp]
|
|
55
|
-
# The start time of the span. On the client side, this is the time kept by
|
|
55
|
+
# Required. The start time of the span. On the client side, this is the time kept by
|
|
56
56
|
# the local machine where the span execution starts. On the server side, this
|
|
57
57
|
# is the time when the server's application handler starts running.
|
|
58
58
|
# @!attribute [rw] end_time
|
|
59
59
|
# @return [Google::Protobuf::Timestamp]
|
|
60
|
-
# The end time of the span. On the client side, this is the time kept by
|
|
60
|
+
# Required. The end time of the span. On the client side, this is the time kept by
|
|
61
61
|
# the local machine where the span execution ends. On the server side, this
|
|
62
62
|
# is the time when the server application handler stops running.
|
|
63
63
|
# @!attribute [rw] attributes
|
|
@@ -87,6 +87,11 @@ module Google
|
|
|
87
87
|
# @return [Google::Protobuf::Int32Value]
|
|
88
88
|
# Optional. The number of child spans that were generated while this span
|
|
89
89
|
# was active. If set, allows implementation to detect missing child spans.
|
|
90
|
+
# @!attribute [rw] span_kind
|
|
91
|
+
# @return [Google::Devtools::Cloudtrace::V2::Span::SpanKind]
|
|
92
|
+
# Optional. Distinguishes between spans generated in a particular context. For example,
|
|
93
|
+
# two spans with the same name may be distinguished using `CLIENT` (caller)
|
|
94
|
+
# and `SERVER` (callee) to identify an RPC call.
|
|
90
95
|
class Span
|
|
91
96
|
# A set of attributes, each in the format `[KEY]:[VALUE]`.
|
|
92
97
|
# @!attribute [rw] attribute_map
|
|
@@ -95,10 +100,9 @@ module Google
|
|
|
95
100
|
# long. The value can be a string up to 256 bytes, a signed 64-bit integer,
|
|
96
101
|
# or the Boolean values `true` and `false`. For example:
|
|
97
102
|
#
|
|
98
|
-
# "/instance_id": "my-instance"
|
|
99
|
-
# "/http/
|
|
100
|
-
# "/
|
|
101
|
-
# "abc.com/myattribute": true
|
|
103
|
+
# "/instance_id": { "string_value": { "value": "my-instance" } }
|
|
104
|
+
# "/http/request_bytes": { "int_value": 300 }
|
|
105
|
+
# "abc.com/myattribute": { "bool_value": false }
|
|
102
106
|
# @!attribute [rw] dropped_attributes_count
|
|
103
107
|
# @return [Integer]
|
|
104
108
|
# The number of attributes that were discarded. Attributes can be discarded
|
|
@@ -218,6 +222,37 @@ module Google
|
|
|
218
222
|
# The number of dropped links after the maximum size was enforced. If
|
|
219
223
|
# this value is 0, then no links were dropped.
|
|
220
224
|
class Links; end
|
|
225
|
+
|
|
226
|
+
# Type of span. Can be used to specify additional relationships between spans
|
|
227
|
+
# in addition to a parent/child relationship.
|
|
228
|
+
module SpanKind
|
|
229
|
+
# Unspecified. Do NOT use as default.
|
|
230
|
+
# Implementations MAY assume SpanKind.INTERNAL to be default.
|
|
231
|
+
SPAN_KIND_UNSPECIFIED = 0
|
|
232
|
+
|
|
233
|
+
# Indicates that the span is used internally. Default value.
|
|
234
|
+
INTERNAL = 1
|
|
235
|
+
|
|
236
|
+
# Indicates that the span covers server-side handling of an RPC or other
|
|
237
|
+
# remote network request.
|
|
238
|
+
SERVER = 2
|
|
239
|
+
|
|
240
|
+
# Indicates that the span covers the client-side wrapper around an RPC or
|
|
241
|
+
# other remote request.
|
|
242
|
+
CLIENT = 3
|
|
243
|
+
|
|
244
|
+
# Indicates that the span describes producer sending a message to a broker.
|
|
245
|
+
# Unlike client and server, there is no direct critical path latency
|
|
246
|
+
# relationship between producer and consumer spans (e.g. publishing a
|
|
247
|
+
# message to a pubsub service).
|
|
248
|
+
PRODUCER = 4
|
|
249
|
+
|
|
250
|
+
# Indicates that the span describes consumer receiving a message from a
|
|
251
|
+
# broker. Unlike client and server, there is no direct critical path
|
|
252
|
+
# latency relationship between producer and consumer spans (e.g. receiving
|
|
253
|
+
# a message from a pubsub service subscription).
|
|
254
|
+
CONSUMER = 5
|
|
255
|
+
end
|
|
221
256
|
end
|
|
222
257
|
|
|
223
258
|
# The allowed types for [VALUE] in a `[KEY]:[VALUE]` attribute.
|
|
@@ -232,7 +232,7 @@ module Google
|
|
|
232
232
|
# Creates a new span.
|
|
233
233
|
#
|
|
234
234
|
# @param name [String]
|
|
235
|
-
# The resource name of the span in the following format:
|
|
235
|
+
# Required. The resource name of the span in the following format:
|
|
236
236
|
#
|
|
237
237
|
# projects/[PROJECT_ID]/traces/[TRACE_ID]/spans/[SPAN_ID]
|
|
238
238
|
#
|
|
@@ -242,9 +242,9 @@ module Google
|
|
|
242
242
|
# [SPAN_ID] is a unique identifier for a span within a trace; it
|
|
243
243
|
# is a 16-character hexadecimal encoding of an 8-byte array.
|
|
244
244
|
# @param span_id [String]
|
|
245
|
-
# The [SPAN_ID] portion of the span's resource name.
|
|
245
|
+
# Required. The [SPAN_ID] portion of the span's resource name.
|
|
246
246
|
# @param display_name [Google::Devtools::Cloudtrace::V2::TruncatableString | Hash]
|
|
247
|
-
# A description of the span's operation (up to 128 bytes).
|
|
247
|
+
# Required. A description of the span's operation (up to 128 bytes).
|
|
248
248
|
# Stackdriver Trace displays the description in the
|
|
249
249
|
# Google Cloud Platform Console.
|
|
250
250
|
# For example, the display name can be a qualified method name or a file name
|
|
@@ -254,13 +254,13 @@ module Google
|
|
|
254
254
|
# A hash of the same form as `Google::Devtools::Cloudtrace::V2::TruncatableString`
|
|
255
255
|
# can also be provided.
|
|
256
256
|
# @param start_time [Google::Protobuf::Timestamp | Hash]
|
|
257
|
-
# The start time of the span. On the client side, this is the time kept by
|
|
257
|
+
# Required. The start time of the span. On the client side, this is the time kept by
|
|
258
258
|
# the local machine where the span execution starts. On the server side, this
|
|
259
259
|
# is the time when the server's application handler starts running.
|
|
260
260
|
# A hash of the same form as `Google::Protobuf::Timestamp`
|
|
261
261
|
# can also be provided.
|
|
262
262
|
# @param end_time [Google::Protobuf::Timestamp | Hash]
|
|
263
|
-
# The end time of the span. On the client side, this is the time kept by
|
|
263
|
+
# Required. The end time of the span. On the client side, this is the time kept by
|
|
264
264
|
# the local machine where the span execution ends. On the server side, this
|
|
265
265
|
# is the time when the server application handler stops running.
|
|
266
266
|
# A hash of the same form as `Google::Protobuf::Timestamp`
|
|
@@ -302,6 +302,10 @@ module Google
|
|
|
302
302
|
# was active. If set, allows implementation to detect missing child spans.
|
|
303
303
|
# A hash of the same form as `Google::Protobuf::Int32Value`
|
|
304
304
|
# can also be provided.
|
|
305
|
+
# @param span_kind [Google::Devtools::Cloudtrace::V2::Span::SpanKind]
|
|
306
|
+
# Optional. Distinguishes between spans generated in a particular context. For example,
|
|
307
|
+
# two spans with the same name may be distinguished using `CLIENT` (caller)
|
|
308
|
+
# and `SERVER` (callee) to identify an RPC call.
|
|
305
309
|
# @param options [Google::Gax::CallOptions]
|
|
306
310
|
# Overrides the default settings for this call, e.g, timeout,
|
|
307
311
|
# retries, etc.
|
|
@@ -343,6 +347,7 @@ module Google
|
|
|
343
347
|
status: nil,
|
|
344
348
|
same_process_as_parent_span: nil,
|
|
345
349
|
child_span_count: nil,
|
|
350
|
+
span_kind: nil,
|
|
346
351
|
options: nil,
|
|
347
352
|
&block
|
|
348
353
|
req = {
|
|
@@ -358,7 +363,8 @@ module Google
|
|
|
358
363
|
links: links,
|
|
359
364
|
status: status,
|
|
360
365
|
same_process_as_parent_span: same_process_as_parent_span,
|
|
361
|
-
child_span_count: child_span_count
|
|
366
|
+
child_span_count: child_span_count,
|
|
367
|
+
span_kind: span_kind
|
|
362
368
|
}.delete_if { |_, v| v.nil? }
|
|
363
369
|
req = Google::Gax::to_proto(req, Google::Devtools::Cloudtrace::V2::Span)
|
|
364
370
|
@create_span.call(req, options, &block)
|
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
require 'google/protobuf'
|
|
6
6
|
|
|
7
|
-
require 'google/api/annotations_pb'
|
|
8
7
|
require 'google/api/client_pb'
|
|
9
8
|
require 'google/api/field_behavior_pb'
|
|
10
9
|
require 'google/api/resource_pb'
|
|
11
10
|
require 'google/protobuf/empty_pb'
|
|
12
11
|
require 'google/protobuf/timestamp_pb'
|
|
12
|
+
require 'google/api/annotations_pb'
|
|
13
13
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
14
14
|
add_message "google.devtools.cloudtrace.v1.Trace" do
|
|
15
15
|
optional :project_id, :string, 1
|
|
@@ -66,17 +66,17 @@ end
|
|
|
66
66
|
module Google
|
|
67
67
|
module Devtools
|
|
68
68
|
module Cloudtrace
|
|
69
|
-
module V1
|
|
70
|
-
Trace = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.Trace").msgclass
|
|
71
|
-
Traces = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.Traces").msgclass
|
|
72
|
-
TraceSpan = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.TraceSpan").msgclass
|
|
73
|
-
TraceSpan::SpanKind = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.TraceSpan.SpanKind").enummodule
|
|
74
|
-
ListTracesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.ListTracesRequest").msgclass
|
|
75
|
-
ListTracesRequest::ViewType = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.ListTracesRequest.ViewType").enummodule
|
|
76
|
-
ListTracesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.ListTracesResponse").msgclass
|
|
77
|
-
GetTraceRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.GetTraceRequest").msgclass
|
|
78
|
-
PatchTracesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.PatchTracesRequest").msgclass
|
|
79
|
-
end
|
|
80
69
|
end
|
|
81
70
|
end
|
|
82
71
|
end
|
|
72
|
+
module Google::Devtools::Cloudtrace::V1
|
|
73
|
+
Trace = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.Trace").msgclass
|
|
74
|
+
Traces = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.Traces").msgclass
|
|
75
|
+
TraceSpan = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.TraceSpan").msgclass
|
|
76
|
+
TraceSpan::SpanKind = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.TraceSpan.SpanKind").enummodule
|
|
77
|
+
ListTracesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.ListTracesRequest").msgclass
|
|
78
|
+
ListTracesRequest::ViewType = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.ListTracesRequest.ViewType").enummodule
|
|
79
|
+
ListTracesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.ListTracesResponse").msgclass
|
|
80
|
+
GetTraceRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.GetTraceRequest").msgclass
|
|
81
|
+
PatchTracesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v1.PatchTracesRequest").msgclass
|
|
82
|
+
end
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
2
|
-
# Source: google/devtools/cloudtrace/v1/trace.proto for package '
|
|
2
|
+
# Source: google/devtools/cloudtrace/v1/trace.proto for package 'Google::Cloud::Trace::V1'
|
|
3
3
|
# Original file comments:
|
|
4
|
-
# Copyright
|
|
4
|
+
# Copyright 2020 Google LLC
|
|
5
5
|
#
|
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
7
|
# you may not use this file except in compliance with the License.
|
|
@@ -23,36 +23,36 @@ require 'google/devtools/cloudtrace/v1/trace_pb'
|
|
|
23
23
|
module Google
|
|
24
24
|
module Devtools
|
|
25
25
|
module Cloudtrace
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
module Google::Devtools::Cloudtrace::V1
|
|
30
|
+
module TraceService
|
|
31
|
+
# This file describes an API for collecting and viewing traces and spans
|
|
32
|
+
# within a trace. A Trace is a collection of spans corresponding to a single
|
|
33
|
+
# operation or set of operations for an application. A span is an individual
|
|
34
|
+
# timed event which forms a node of the trace tree. Spans for a single trace
|
|
35
|
+
# may span multiple services.
|
|
36
|
+
class Service
|
|
36
37
|
|
|
37
|
-
|
|
38
|
-
self.unmarshal_class_method = :decode
|
|
39
|
-
self.service_name = 'google.devtools.cloudtrace.v1.TraceService'
|
|
38
|
+
include GRPC::GenericService
|
|
40
39
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
rpc :GetTrace, GetTraceRequest, Trace
|
|
45
|
-
# Sends new traces to Stackdriver Trace or updates existing traces. If the ID
|
|
46
|
-
# of a trace that you send matches that of an existing trace, any fields
|
|
47
|
-
# in the existing trace and its spans are overwritten by the provided values,
|
|
48
|
-
# and any new fields provided are merged with the existing trace data. If the
|
|
49
|
-
# ID does not match, a new trace is created.
|
|
50
|
-
rpc :PatchTraces, PatchTracesRequest, Google::Protobuf::Empty
|
|
51
|
-
end
|
|
40
|
+
self.marshal_class_method = :encode
|
|
41
|
+
self.unmarshal_class_method = :decode
|
|
42
|
+
self.service_name = 'google.devtools.cloudtrace.v1.TraceService'
|
|
52
43
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
44
|
+
# Returns of a list of traces that match the specified filter conditions.
|
|
45
|
+
rpc :ListTraces, ListTracesRequest, ListTracesResponse
|
|
46
|
+
# Gets a single trace by its ID.
|
|
47
|
+
rpc :GetTrace, GetTraceRequest, Trace
|
|
48
|
+
# Sends new traces to Stackdriver Trace or updates existing traces. If the ID
|
|
49
|
+
# of a trace that you send matches that of an existing trace, any fields
|
|
50
|
+
# in the existing trace and its spans are overwritten by the provided values,
|
|
51
|
+
# and any new fields provided are merged with the existing trace data. If the
|
|
52
|
+
# ID does not match, a new trace is created.
|
|
53
|
+
rpc :PatchTraces, PatchTracesRequest, Google::Protobuf::Empty
|
|
56
54
|
end
|
|
55
|
+
|
|
56
|
+
Stub = Service.rpc_stub_class
|
|
57
57
|
end
|
|
58
58
|
end
|
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
require 'google/protobuf'
|
|
6
6
|
|
|
7
|
-
require 'google/api/annotations_pb'
|
|
8
7
|
require 'google/api/field_behavior_pb'
|
|
9
8
|
require 'google/api/resource_pb'
|
|
10
9
|
require 'google/protobuf/timestamp_pb'
|
|
11
10
|
require 'google/protobuf/wrappers_pb'
|
|
12
11
|
require 'google/rpc/status_pb'
|
|
12
|
+
require 'google/api/annotations_pb'
|
|
13
13
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
14
14
|
add_message "google.devtools.cloudtrace.v2.Span" do
|
|
15
15
|
optional :name, :string, 1
|
|
@@ -25,6 +25,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
25
25
|
optional :status, :message, 11, "google.rpc.Status"
|
|
26
26
|
optional :same_process_as_parent_span, :message, 12, "google.protobuf.BoolValue"
|
|
27
27
|
optional :child_span_count, :message, 13, "google.protobuf.Int32Value"
|
|
28
|
+
optional :span_kind, :enum, 14, "google.devtools.cloudtrace.v2.Span.SpanKind"
|
|
28
29
|
end
|
|
29
30
|
add_message "google.devtools.cloudtrace.v2.Span.Attributes" do
|
|
30
31
|
map :attribute_map, :string, :message, 1, "google.devtools.cloudtrace.v2.AttributeValue"
|
|
@@ -72,6 +73,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
72
73
|
repeated :link, :message, 1, "google.devtools.cloudtrace.v2.Span.Link"
|
|
73
74
|
optional :dropped_links_count, :int32, 2
|
|
74
75
|
end
|
|
76
|
+
add_enum "google.devtools.cloudtrace.v2.Span.SpanKind" do
|
|
77
|
+
value :SPAN_KIND_UNSPECIFIED, 0
|
|
78
|
+
value :INTERNAL, 1
|
|
79
|
+
value :SERVER, 2
|
|
80
|
+
value :CLIENT, 3
|
|
81
|
+
value :PRODUCER, 4
|
|
82
|
+
value :CONSUMER, 5
|
|
83
|
+
end
|
|
75
84
|
add_message "google.devtools.cloudtrace.v2.AttributeValue" do
|
|
76
85
|
oneof :value do
|
|
77
86
|
optional :string_value, :message, 1, "google.devtools.cloudtrace.v2.TruncatableString"
|
|
@@ -109,24 +118,25 @@ end
|
|
|
109
118
|
module Google
|
|
110
119
|
module Devtools
|
|
111
120
|
module Cloudtrace
|
|
112
|
-
module V2
|
|
113
|
-
Span = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span").msgclass
|
|
114
|
-
Span::Attributes = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.Attributes").msgclass
|
|
115
|
-
Span::TimeEvent = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.TimeEvent").msgclass
|
|
116
|
-
Span::TimeEvent::Annotation = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.TimeEvent.Annotation").msgclass
|
|
117
|
-
Span::TimeEvent::MessageEvent = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.TimeEvent.MessageEvent").msgclass
|
|
118
|
-
Span::TimeEvent::MessageEvent::Type = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.TimeEvent.MessageEvent.Type").enummodule
|
|
119
|
-
Span::TimeEvents = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.TimeEvents").msgclass
|
|
120
|
-
Span::Link = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.Link").msgclass
|
|
121
|
-
Span::Link::Type = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.Link.Type").enummodule
|
|
122
|
-
Span::Links = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.Links").msgclass
|
|
123
|
-
AttributeValue = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.AttributeValue").msgclass
|
|
124
|
-
StackTrace = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.StackTrace").msgclass
|
|
125
|
-
StackTrace::StackFrame = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.StackTrace.StackFrame").msgclass
|
|
126
|
-
StackTrace::StackFrames = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.StackTrace.StackFrames").msgclass
|
|
127
|
-
Module = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Module").msgclass
|
|
128
|
-
TruncatableString = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.TruncatableString").msgclass
|
|
129
|
-
end
|
|
130
121
|
end
|
|
131
122
|
end
|
|
132
123
|
end
|
|
124
|
+
module Google::Devtools::Cloudtrace::V2
|
|
125
|
+
Span = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span").msgclass
|
|
126
|
+
Span::Attributes = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.Attributes").msgclass
|
|
127
|
+
Span::TimeEvent = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.TimeEvent").msgclass
|
|
128
|
+
Span::TimeEvent::Annotation = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.TimeEvent.Annotation").msgclass
|
|
129
|
+
Span::TimeEvent::MessageEvent = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.TimeEvent.MessageEvent").msgclass
|
|
130
|
+
Span::TimeEvent::MessageEvent::Type = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.TimeEvent.MessageEvent.Type").enummodule
|
|
131
|
+
Span::TimeEvents = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.TimeEvents").msgclass
|
|
132
|
+
Span::Link = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.Link").msgclass
|
|
133
|
+
Span::Link::Type = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.Link.Type").enummodule
|
|
134
|
+
Span::Links = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.Links").msgclass
|
|
135
|
+
Span::SpanKind = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Span.SpanKind").enummodule
|
|
136
|
+
AttributeValue = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.AttributeValue").msgclass
|
|
137
|
+
StackTrace = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.StackTrace").msgclass
|
|
138
|
+
StackTrace::StackFrame = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.StackTrace.StackFrame").msgclass
|
|
139
|
+
StackTrace::StackFrames = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.StackTrace.StackFrames").msgclass
|
|
140
|
+
Module = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.Module").msgclass
|
|
141
|
+
TruncatableString = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.TruncatableString").msgclass
|
|
142
|
+
end
|
|
@@ -21,9 +21,9 @@ end
|
|
|
21
21
|
module Google
|
|
22
22
|
module Devtools
|
|
23
23
|
module Cloudtrace
|
|
24
|
-
module V2
|
|
25
|
-
BatchWriteSpansRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.BatchWriteSpansRequest").msgclass
|
|
26
|
-
end
|
|
27
24
|
end
|
|
28
25
|
end
|
|
29
26
|
end
|
|
27
|
+
module Google::Devtools::Cloudtrace::V2
|
|
28
|
+
BatchWriteSpansRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.devtools.cloudtrace.v2.BatchWriteSpansRequest").msgclass
|
|
29
|
+
end
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
2
|
-
# Source: google/devtools/cloudtrace/v2/tracing.proto for package '
|
|
2
|
+
# Source: google/devtools/cloudtrace/v2/tracing.proto for package 'Google::Cloud::Trace::V2'
|
|
3
3
|
# Original file comments:
|
|
4
|
-
# Copyright
|
|
4
|
+
# Copyright 2020 Google LLC
|
|
5
5
|
#
|
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
7
|
# you may not use this file except in compliance with the License.
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# See the License for the specific language governing permissions and
|
|
16
16
|
# limitations under the License.
|
|
17
17
|
#
|
|
18
|
-
#
|
|
19
18
|
|
|
20
19
|
|
|
21
20
|
require 'grpc'
|
|
@@ -24,31 +23,31 @@ require 'google/devtools/cloudtrace/v2/tracing_pb'
|
|
|
24
23
|
module Google
|
|
25
24
|
module Devtools
|
|
26
25
|
module Cloudtrace
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
module Google::Devtools::Cloudtrace::V2
|
|
30
|
+
module TraceService
|
|
31
|
+
# This file describes an API for collecting and viewing traces and spans
|
|
32
|
+
# within a trace. A Trace is a collection of spans corresponding to a single
|
|
33
|
+
# operation or set of operations for an application. A span is an individual
|
|
34
|
+
# timed event which forms a node of the trace tree. A single trace may
|
|
35
|
+
# contain span(s) from multiple services.
|
|
36
|
+
class Service
|
|
37
37
|
|
|
38
|
-
|
|
39
|
-
self.unmarshal_class_method = :decode
|
|
40
|
-
self.service_name = 'google.devtools.cloudtrace.v2.TraceService'
|
|
38
|
+
include GRPC::GenericService
|
|
41
39
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
# Creates a new span.
|
|
46
|
-
rpc :CreateSpan, Span, Span
|
|
47
|
-
end
|
|
40
|
+
self.marshal_class_method = :encode
|
|
41
|
+
self.unmarshal_class_method = :decode
|
|
42
|
+
self.service_name = 'google.devtools.cloudtrace.v2.TraceService'
|
|
48
43
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
44
|
+
# Sends new spans to new or existing traces. You cannot update
|
|
45
|
+
# existing spans.
|
|
46
|
+
rpc :BatchWriteSpans, BatchWriteSpansRequest, Google::Protobuf::Empty
|
|
47
|
+
# Creates a new span.
|
|
48
|
+
rpc :CreateSpan, Span, Span
|
|
52
49
|
end
|
|
50
|
+
|
|
51
|
+
Stub = Service.rpc_stub_class
|
|
53
52
|
end
|
|
54
53
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-trace
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.39.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Azuma
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-07-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-cloud-core
|
|
@@ -368,7 +368,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
368
368
|
- !ruby/object:Gem::Version
|
|
369
369
|
version: '0'
|
|
370
370
|
requirements: []
|
|
371
|
-
rubygems_version: 3.
|
|
371
|
+
rubygems_version: 3.1.3
|
|
372
372
|
signing_key:
|
|
373
373
|
specification_version: 4
|
|
374
374
|
summary: Application Instrumentation and API Client library for Stackdriver Trace
|