Cette page vous aide à débuter avec les bibliothèques clientes cloud conçues pour l'API Stackdriver Error Reporting. Pour en savoir plus sur les bibliothèques clientes des API Cloud, y compris sur les anciennes bibliothèques clientes des API Google, consultez la section Présentation des bibliothèques clientes.
Installer la bibliothèque cliente
C#
Pour en savoir plus, consultez la section Configurer un environnement de développement C#.Install-Package Google.Cloud.ErrorReporting.V1Beta1 -pre
Go
go get cloud.google.com/go/errorreporting
Java
Pour en savoir plus, consultez la section Configurer un environnement de développement Java.If you are using Maven, add
the following to your pom.xml
file. For more information about
BOMs, see The Google Cloud Platform Libraries BOM.
If you are using Gradle, add the following to your dependencies:
If you are using sbt, add the following to your dependencies:
If you're using Visual Studio Code, IntelliJ, or Eclipse, you can add client libraries to your project using the following IDE plugins:
The plugins provide additional functionality, such as key management for service accounts. Refer to each plugin's documentation for details.
Node.js
Pour en savoir plus, consultez la section Configurer un environnement de développement Node.js.npm install --save @google-cloud/error-reporting
PHP
composer require google/cloud-error-reporting
Python
Pour en savoir plus, consultez la section Configurer un environnement de développement Python.pip install --upgrade google-cloud-error_reporting
Ruby
Pour en savoir plus, consultez la section Configurer un environnement de développement Ruby.gem install google-cloud-error_reporting
Configurer l'authentification
Pour exécuter la bibliothèque cliente, vous devez d'abord configurer l'authentification en créant un compte de service et en définissant une variable d'environnement. Suivez les étapes ci-dessous pour configurer l'authentification. Pour en savoir plus, consultez la documentation sur l'authentification dans GCP.
Provide authentication credentials to your application code by setting the
environment variable GOOGLE_APPLICATION_CREDENTIALS
. This
variable applies only to your current shell session. If you want the variable
to apply to future shell sessions, set the variable in your shell startup file,
for example in the ~/.bashrc
or ~/.profile
file.
Linux ou macOS
export GOOGLE_APPLICATION_CREDENTIALS="KEY_PATH
"
Replace KEY_PATH
with the path of the JSON file that contains your credentials.
For example:
export GOOGLE_APPLICATION_CREDENTIALS="/home/user/Downloads/service-account-file.json"
Windows
For PowerShell:
$env:GOOGLE_APPLICATION_CREDENTIALS="KEY_PATH
"
Replace KEY_PATH
with the path of the JSON file that contains your credentials.
For example:
$env:GOOGLE_APPLICATION_CREDENTIALS="C:\Users\username\Downloads\service-account-file.json"
For command prompt:
set GOOGLE_APPLICATION_CREDENTIALS=KEY_PATH
Replace KEY_PATH
with the path of the JSON file that contains your credentials.
Utiliser la bibliothèque cliente
L'exemple suivant vous montre comment utiliser la bibliothèque cliente.
C#
Go
Java
Node.js
PHP
Python
Ruby