Ruby: Configure GCP Client

Stay organized with collections Save and categorize content based on your preferences.

Configure GCP client authentication.

Explore further

For detailed documentation that includes this code sample, see the following:

Code sample

Ruby

To learn how to install and use the client library for Logging, see Logging client libraries.

require "google/cloud/logging"

Google::Cloud.configure do |config|
  # Stackdriver Logging specific parameters
  config.logging.project_id = "YOUR-PROJECT-ID"
  config.logging.keyfile    = "/path/to/service-account.json"
end

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser.