Stay organized with collections
Save and categorize content based on your preferences.
Authentication
In general, the library uses Service
Account
credentials to connect to Google Cloud services. When running within Google
Cloud Platform environments
the credentials will be discovered automatically. When running on other
environments, the Service Account credentials can be specified by providing the
path to the JSON
keyfile for
the account (or the JSON itself) in environment
variables. Additionally, Cloud SDK credentials can also
be discovered automatically, but this is only recommended during development.
The library aims to make authentication as simple as
possible, and provides several mechanisms to configure your system
without providing Project ID and Service Account Credentials directly in
code.
Project ID is discovered in the following order:
Specify project ID in method arguments
Specify project ID in configuration
Discover project ID in environment variables
Discover GCE project ID
Discover project ID in credentials JSON
Credentials are discovered in the following order:
Specify credentials in method arguments
Specify credentials in configuration
Discover credentials path in environment variables
Discover credentials JSON in environment variables
Discover credentials file in the Cloud SDK's path
Discover GCE credentials
Google Cloud Platform environments
When running on Google Cloud Platform (GCP), including Google Compute Engine (GCE),
Google Kubernetes Engine (GKE), Google App Engine (GAE), Google Cloud Functions
(GCF) and Cloud Run, the Project ID and Credentials and are discovered
automatically. Code should be written as if already authenticated.
Environment Variables
The Project ID and Credentials JSON can be placed in environment
variables instead of declaring them directly in code.
The path to the Credentials JSON file can be stored in the
environment variable, or the Credentials JSON itself can be stored for
environments such as Docker containers where writing files is difficult or not
encouraged.
The environment variables that library checks for project ID are:
GOOGLE_CLOUD_PROJECT
The environment variables that library checks for credentials:
GOOGLE_CLOUD_CREDENTIALS - Path to JSON file, or JSON contents
GOOGLE_CLOUD_KEYFILE - Path to JSON file, or JSON contents
GOOGLE_APPLICATION_CREDENTIALS - Path to JSON file
Cloud SDK
This option allows for an easy way to authenticate during development. If
credentials are not provided in code or in environment variables, then Cloud SDK
credentials are discovered.
NOTE: This is not recommended for running in production. The Cloud SDK
should only be used during development.
Creating a Service Account
Google Cloud requires a Project ID and Service Account Credentials to
connect to the APIs. You will use the Project ID and JSON key file to
connect to most services with the library.
Create a new project or click on an existing project.
Activate the slide-out navigation tray and select API Manager. From
here, you will enable the APIs that your application requires.
Note: You may need to enable billing in order to use these services.
Select Credentials from the side navigation.
You should see a screen like one of the following.
Find the "Add credentials" drop down and select "Service account" to be
guided through downloading a new JSON key file.
If you want to re-use an existing service account, you can easily generate a
new key file. Just select the account you wish to re-use, and click "Generate
new JSON key":
The key file you download will be used by this library to authenticate API
requests and should be stored in a secure location.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-09-09 UTC."],[],[],null,["Authentication\n==============\n\nIn general, the library uses [Service\nAccount](https://cloud.google.com/iam/docs/creating-managing-service-accounts)\ncredentials to connect to Google Cloud services. When running within [Google\nCloud Platform environments](#google-cloud-platform-environments)\nthe credentials will be discovered automatically. When running on other\nenvironments, the Service Account credentials can be specified by providing the\npath to the [JSON\nkeyfile](https://cloud.google.com/iam/docs/managing-service-account-keys) for\nthe account (or the JSON itself) in [environment\nvariables](#environment-variables). Additionally, Cloud SDK credentials can also\nbe discovered automatically, but this is only recommended during development.\n\nQuickstart\n----------\n\n1. [Create a service account and credentials](#creating-a-service-account).\n2. Set the [environment variable](#environment-variables).\n\n export GOOGLE_APPLICATION_CREDENTIALS=/path/to/json`\n\n1. Initialize the exporter.\n\n```ruby\nOpenTelemetry::Exporter::GoogleCloudTrace::CloudTraceSpanExporter.new\n```\n\nProject and Credential Lookup\n-----------------------------\n\nThe library aims to make authentication as simple as\npossible, and provides several mechanisms to configure your system\nwithout providing **Project ID** and **Service Account Credentials** directly in\ncode.\n\n**Project ID** is discovered in the following order:\n\n1. Specify project ID in method arguments\n2. Specify project ID in configuration\n3. Discover project ID in environment variables\n4. Discover GCE project ID\n5. Discover project ID in credentials JSON\n\n**Credentials** are discovered in the following order:\n\n1. Specify credentials in method arguments\n2. Specify credentials in configuration\n3. Discover credentials path in environment variables\n4. Discover credentials JSON in environment variables\n5. Discover credentials file in the Cloud SDK's path\n6. Discover GCE credentials\n\n### Google Cloud Platform environments\n\nWhen running on Google Cloud Platform (GCP), including Google Compute Engine (GCE),\nGoogle Kubernetes Engine (GKE), Google App Engine (GAE), Google Cloud Functions\n(GCF) and Cloud Run, the **Project ID** and **Credentials** and are discovered\nautomatically. Code should be written as if already authenticated.\n\n### Environment Variables\n\nThe **Project ID** and **Credentials JSON** can be placed in environment\nvariables instead of declaring them directly in code.\nThe path to the **Credentials JSON** file can be stored in the\nenvironment variable, or the **Credentials JSON** itself can be stored for\nenvironments such as Docker containers where writing files is difficult or not\nencouraged.\n\nThe environment variables that library checks for project ID are:\n\n1. `GOOGLE_CLOUD_PROJECT`\n\nThe environment variables that library checks for credentials:\n\n1. `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents\n2. `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents\n3. `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file\n\n### Cloud SDK\n\nThis option allows for an easy way to authenticate during development. If\ncredentials are not provided in code or in environment variables, then Cloud SDK\ncredentials are discovered.\n\nTo configure your system for this, simply:\n\n1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)\n2. Authenticate using OAuth 2.0 `$ gcloud auth login`\n3. Write code as if already authenticated.\n\n**NOTE:** This is *not* recommended for running in production. The Cloud SDK\n*should* only be used during development.\n\nCreating a Service Account\n--------------------------\n\nGoogle Cloud requires a **Project ID** and **Service Account Credentials** to\nconnect to the APIs. You will use the **Project ID** and **JSON key file** to\nconnect to most services with the library.\n\nIf you are not running this client within [Google Cloud Platform\nenvironments](#google-cloud-platform-environments), you need a Google\nDevelopers service account.\n\n1. Visit the [Google Developers Console](https://console.cloud.google.com/project).\n2. Create a new project or click on an existing project.\n3. Activate the slide-out navigation tray and select **API Manager**. From\n here, you will enable the APIs that your application requires.\n\n *Note: You may need to enable billing in order to use these services.*\n4. Select **Credentials** from the side navigation.\n\n You should see a screen like one of the following.\n\n Find the \"Add credentials\" drop down and select \"Service account\" to be\n guided through downloading a new JSON key file.\n\n If you want to re-use an existing service account, you can easily generate a\n new key file. Just select the account you wish to re-use, and click \"Generate\n new JSON key\":\n\n The key file you download will be used by this library to authenticate API\n requests and should be stored in a secure location."]]