Trace un'applicazione C++
Scopri come compilare ed eseguire l'esempio C++ con OpenTelemetry ed esportare le tracce in Cloud Trace. In questo esempio viene utilizzato il client C++ Pub/Sub di Google Cloud per pubblicare 5 messaggi ed esportare le tracce in Cloud Trace.
Prima di iniziare
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
-
Enable the Pub/Sub and Trace APIs.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
-
Enable the Pub/Sub and Trace APIs.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
Impostazione
Crea un argomento con ID
my-topic
:gcloud pubsub topics create my-topic
Verifica il codice sorgente di esempio C++:
git clone --depth 1 https://github.com/GoogleCloudPlatforms/cpp-samples
pubblica dei messaggi
Compila ed esegui l'esempio:
cd cpp-samples/pubsub-open-telemetry bazel run //:quickstart -- $(gcloud config get project) my-topic
Dopo aver eseguito questo esempio, vedrai le seguenti righe stampate nella console.
Sent message with id: (9095112996778043) Sent message with id: (9095112996778044) Sent message with id: (9095112996778045) Sent message with id: (9095112996778046) Sent message with id: (9095112996778047)
Visualizzazione delle tracce
Nella barra di ricerca della console Google Cloud, inserisci Trace Overview (Panoramica di Trace). Nei risultati di ricerca, vai alla sezione Prodotti e pagine e seleziona la pagina Panoramica per Trace:
Esegui la pulizia
Per evitare che al tuo account Google Cloud vengano addebitati costi relativi alle risorse utilizzate in questa pagina, segui questi passaggi.
Elimina l'argomento creato dall'esempio:
gcloud pubsub topics delete my-topic
Passaggi successivi
- Scopri di più su C++ e OpenTelemetry.
- Scopri altri esempi di C++.
- Scopri di più sulle API Pub/Sub.
- Prova altri esempi di OpenTelemetry Pub/Sub C++.