# Copyright 2016 Google LLC # # 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 # # https://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. ## # This file is here to be autorequired by bundler, so that the # Google::Cloud.trace and Google::Cloud#trace methods can be available, but the # library and all dependencies won't be loaded until required and used. gem "google-cloud-core" require "google/cloud" unless defined? Google::Cloud.new require "google/cloud/config" require "googleauth" module Google module Cloud ## # Creates a new object for connecting to the Stackdriver Trace service. # Each call creates a new connection. # # For more information on connecting to Google Cloud see the # {file:AUTHENTICATION.md Authentication Guide}. # # @param [String, Array] scope The OAuth 2.0 scopes controlling the # set of resources and operations that the connection can access. See # [Using OAuth 2.0 to Access Google # APIs](https://developers.google.com/identity/protocols/OAuth2). # # The default scope is: # # * `https://www.googleapis.com/auth/cloud-platform` # # @param [Integer] timeout Default timeout to use in requests. Optional. # # @return [Google::Cloud::Trace::Project] # # @example # require "google/cloud" # # gcloud = Google::Cloud.new # trace_client = gcloud.trace # # traces = trace_client.list_traces Time.now - 3600, Time.now # traces.each do |trace| # puts "Retrieved trace ID: #{trace.trace_id}" # end # def trace scope: nil, timeout: nil, client_config: nil Google::Cloud.trace @project, @keyfile, scope: scope, timeout: (timeout || @timeout), client_config: client_config end ## # Creates a new object for connecting to the Stackdriver Trace service. # Each call creates a new connection. # # For more information on connecting to Google Cloud see the # {file:AUTHENTICATION.md Authentication Guide}. # # @param [String] project_id Project identifier for the Stackdriver Trace # service you are connecting to. If not present, the default project for # the credentials is used. # @param [String, Hash, Google::Auth::Credentials] credentials The path to # the keyfile as a String, the contents of the keyfile as a Hash, or a # Google::Auth::Credentials object. (See {Trace::Credentials}) # @param [String, Array] scope The OAuth 2.0 scopes controlling the # set of resources and operations that the connection can access. See # [Using OAuth 2.0 to Access Google # APIs](https://developers.google.com/identity/protocols/OAuth2). # # The default scope is: # # * `https://www.googleapis.com/auth/cloud-platform` # # @param [Integer] timeout Default timeout to use in requests. Optional. # # @return [Google::Cloud::Trace::Project] # # @example # require "google/cloud" # # trace_client = Google::Cloud.trace # # traces = trace_client.list_traces Time.now - 3600, Time.now # traces.each do |trace| # puts "Retrieved trace ID: #{trace.trace_id}" # end # def self.trace project_id = nil, credentials = nil, scope: nil, timeout: nil, client_config: nil require "google/cloud/trace" Google::Cloud::Trace.new project_id: project_id, credentials: credentials, scope: scope, timeout: timeout, client_config: client_config end end end # Add trace to top-level configuration Google::Cloud.configure do |config| unless config.field? :use_trace config.add_field! :use_trace, nil, enum: [true, false] end end # Set the default trace configuration Google::Cloud.configure.add_config! :trace do |config| default_project = Google::Cloud::Config.deferred do ENV["TRACE_PROJECT"] end default_creds = Google::Cloud::Config.deferred do Google::Cloud::Config.credentials_from_env( "TRACE_CREDENTIALS", "TRACE_CREDENTIALS_JSON", "TRACE_KEYFILE", "TRACE_KEYFILE_JSON" ) end config.add_field! :project_id, default_project, match: String, allow_nil: true config.add_alias! :project, :project_id config.add_field! :credentials, default_creds, match: [String, Hash, Google::Auth::Credentials], allow_nil: true config.add_alias! :keyfile, :credentials config.add_field! :scope, nil, match: [String, Array] config.add_field! :timeout, nil, match: Integer config.add_field! :client_config, nil, match: Hash config.add_field! :endpoint, nil, match: String config.add_field! :capture_stack, nil, enum: [true, false] config.add_field! :sampler, nil config.add_field! :span_id_generator, nil, match: Proc config.add_field! :notifications, nil, match: Array config.add_field! :max_data_length, nil, match: Integer config.add_field! :on_error, nil, match: Proc end