Class: Google::Apis::TracingV1::TracingService
- Inherits:
-
Core::BaseService
- Object
- Core::BaseService
- Google::Apis::TracingV1::TracingService
- Defined in:
- generated/google/apis/tracing_v1/service.rb
Overview
Google Tracing API
Send and retrieve trace data from Google Stackdriver Trace.
Instance Attribute Summary collapse
-
#key ⇒ String
API key.
-
#quota_user ⇒ String
Available to use for quota purposes for server-side applications.
Attributes inherited from Core::BaseService
#authorization, #base_path, #batch_path, #client, #client_options, #request_options, #root_url, #upload_path
Instance Method Summary collapse
-
#batch_trace_update_spans(parent, batch_update_spans_request_object = nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TracingV1::Empty
Sends new spans to Stackdriver Trace or updates existing spans.
-
#get_project_trace(name, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TracingV1::Trace
Returns a specific trace.
-
#initialize ⇒ TracingService
constructor
A new instance of TracingService.
-
#list_project_trace_spans(name, page_token: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TracingV1::ListSpansResponse
Returns a list of spans within a trace.
-
#list_project_traces(parent, filter: nil, end_time: nil, page_token: nil, start_time: nil, page_size: nil, order_by: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TracingV1::ListTracesResponse
Returns of a list of traces that match the specified filter conditions.
Methods inherited from Core::BaseService
#batch, #batch_upload, #fetch_all, #http
Constructor Details
#initialize ⇒ TracingService
Returns a new instance of TracingService
45 46 47 |
# File 'generated/google/apis/tracing_v1/service.rb', line 45 def initialize super('https://tracing.googleapis.com/', '') end |
Instance Attribute Details
#key ⇒ String
Returns API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
38 39 40 |
# File 'generated/google/apis/tracing_v1/service.rb', line 38 def key @key end |
#quota_user ⇒ String
Returns Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
43 44 45 |
# File 'generated/google/apis/tracing_v1/service.rb', line 43 def quota_user @quota_user end |
Instance Method Details
#batch_trace_update_spans(parent, batch_update_spans_request_object = nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TracingV1::Empty
Sends new spans to Stackdriver Trace or updates existing spans. If the name of a trace that you send matches that of an existing trace, any fields in the existing trace and its spans are overwritten by the provided values, and any new fields provided are merged with the existing trace data. If the name does not match, a new trace is created with given set of spans.
204 205 206 207 208 209 210 211 212 213 214 |
# File 'generated/google/apis/tracing_v1/service.rb', line 204 def batch_trace_update_spans(parent, batch_update_spans_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:post, 'v1/{+parent}/traces:batchUpdate', ) command.request_representation = Google::Apis::TracingV1::BatchUpdateSpansRequest::Representation command.request_object = batch_update_spans_request_object command.response_representation = Google::Apis::TracingV1::Empty::Representation command.response_class = Google::Apis::TracingV1::Empty command.params['parent'] = parent unless parent.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#get_project_trace(name, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TracingV1::Trace
Returns a specific trace.
169 170 171 172 173 174 175 176 177 |
# File 'generated/google/apis/tracing_v1/service.rb', line 169 def get_project_trace(name, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:get, 'v1/{+name}', ) command.response_representation = Google::Apis::TracingV1::Trace::Representation command.response_class = Google::Apis::TracingV1::Trace command.params['name'] = name unless name.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#list_project_trace_spans(name, page_token: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TracingV1::ListSpansResponse
Returns a list of spans within a trace.
73 74 75 76 77 78 79 80 81 82 |
# File 'generated/google/apis/tracing_v1/service.rb', line 73 def list_project_trace_spans(name, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:get, 'v1/{+name}:listSpans', ) command.response_representation = Google::Apis::TracingV1::ListSpansResponse::Representation command.response_class = Google::Apis::TracingV1::ListSpansResponse command.params['name'] = name unless name.nil? command.query['pageToken'] = page_token unless page_token.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#list_project_traces(parent, filter: nil, end_time: nil, page_token: nil, start_time: nil, page_size: nil, order_by: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TracingV1::ListTracesResponse
Returns of a list of traces that match the specified filter conditions.
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
# File 'generated/google/apis/tracing_v1/service.rb', line 133 def list_project_traces(parent, filter: nil, end_time: nil, page_token: nil, start_time: nil, page_size: nil, order_by: nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:get, 'v1/{+parent}/traces', ) command.response_representation = Google::Apis::TracingV1::ListTracesResponse::Representation command.response_class = Google::Apis::TracingV1::ListTracesResponse command.params['parent'] = parent unless parent.nil? command.query['filter'] = filter unless filter.nil? command.query['endTime'] = end_time unless end_time.nil? command.query['pageToken'] = page_token unless page_token.nil? command.query['startTime'] = start_time unless start_time.nil? command.query['pageSize'] = page_size unless page_size.nil? command.query['orderBy'] = order_by unless order_by.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |