Module: Google::Cloud

Defined in:
lib/google-cloud-error_reporting.rb,
lib/google/cloud/error_reporting.rb,
lib/google/cloud/error_reporting/rails.rb,
lib/google/cloud/error_reporting/project.rb,
lib/google/cloud/error_reporting/service.rb,
lib/google/cloud/error_reporting/version.rb,
lib/google/cloud/error_reporting/middleware.rb,
lib/google/cloud/error_reporting/credentials.rb,
lib/google/cloud/error_reporting/error_event.rb,
lib/google/cloud/error_reporting/async_error_reporter.rb

Defined Under Namespace

Modules: ErrorReporting

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.error_reporting(project_id = nil, credentials = nil, scope: nil, timeout: nil) ⇒ Google::Cloud::ErrorReporting::Project

Create a new object for connecting to the Error Reporting service. Each call creates a new connection.

For more information on connecting to Google Cloud see the Authentication Guide.

Examples:

require "google/cloud/error_reporting"

error_reporting =
  Google::Cloud.error_reporting "GCP_Project_ID",
                                "/path/to/gcp/secretkey.json"

error_event = error_reporting.error_event "Error with Backtrace",
                                          event_time: Time.now,
                                          service_name: "my_app_name",
                                          service_version: "v8"
error_reporting.report error_event

Parameters:

  • project_id (String) (defaults to: nil)

    Google Cloud Platform project identifier for the Error Reporting service you are connecting to. If not present, the default project for the credentials is used.

  • credentials (String, Hash, Google::Auth::Credentials) (defaults to: nil)

    The path to the keyfile as a String, the contents of the keyfile as a Hash, or a Google::Auth::Credentials object. (See Google::Cloud::ErrorReporting::Credentials)

  • scope (String, Array<String>) (defaults to: nil)

    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.

    The default scope is:

    • https://www.googleapis.com/auth/cloud-platform
  • timeout (Integer) (defaults to: nil)

    Default timeout to use in requests. Optional.

Returns:



106
107
108
109
110
111
# File 'lib/google-cloud-error_reporting.rb', line 106

def self.error_reporting project_id = nil, credentials = nil, scope: nil, timeout: nil
  require "google/cloud/error_reporting"
  Google::Cloud::ErrorReporting.new project_id: project_id,
                                    credentials: credentials,
                                    scope: scope, timeout: timeout
end

Instance Method Details

#error_reporting(scope: nil, timeout: nil) ⇒ Google::Cloud::ErrorReporting::Project

Create a new object for connecting to the Error Reporting service. Each call creates a new connection.

For more information on connecting to Google Cloud see the Authentication Guide.

Examples:

require "google/cloud/error_reporting"

gcloud = Google::Cloud.new "GCP_Project_ID",
                           "/path/to/gcp/secretkey.json"
error_reporting = gcloud.error_reporting

error_event = error_reporting.error_event "Error with Backtrace",
                                          event_time: Time.now,
                                          service_name: "my_app_name",
                                          service_version: "v8"
error_reporting.report error_event

Parameters:

  • scope (String, Array<String>) (defaults to: nil)

    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.

    The default scope is:

    • https://www.googleapis.com/auth/cloud-platform
  • timeout (Integer) (defaults to: nil)

    Default timeout to use in requests. Optional.

Returns:



60
61
62
63
64
65
# File 'lib/google-cloud-error_reporting.rb', line 60

def error_reporting scope: nil, timeout: nil
  timeout ||= @timeout
  Google::Cloud.error_reporting @project, @keyfile,
                                scope: scope,
                                timeout: timeout
end