מעקב אחר אפליקציית C++
במאמר הזה נסביר איך לקמפל ולהריץ את הדוגמה של C++ באמצעות OpenTelemetry ולייצא את העקבות אל Cloud Trace. בדוגמה הזו נעשה שימוש בלקוח Google Cloud Pub/Sub C++ כדי לפרסם 5 הודעות ולייצא את העקבות אל Cloud Trace.
לפני שמתחילים
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
Roles required to select or create a project
- Select a project: Selecting a project doesn't require a specific IAM role—you can select any project that you've been granted a role on.
-
Create a project: To create a project, you need the Project Creator role
(
roles/resourcemanager.projectCreator), which contains theresourcemanager.projects.createpermission. Learn how to grant roles.
-
Verify that billing is enabled for your Google Cloud project.
Enable the Pub/Sub and Trace APIs.
Roles required to enable APIs
To enable APIs, you need the
serviceusage.services.enablepermission. If you created the project, then you likely already have this permission through the Owner role (roles/owner). Otherwise, you can get this permission through the Service Usage Admin role (roles/serviceusage.serviceUsageAdmin). Learn how to grant roles.-
התקינו את ה-CLI של Google Cloud.
-
הגדירו שה-CLI של gcloud ישתמש בזהות המאוחדת שלכם.
-
כדי לאתחל את ה-CLI של gcloud, הריצו את הפקודה הבאה:
gcloud init
הגדרה
תכין לי נושא עם המזהה
my-topic:gcloud pubsub topics create my-topicבודקים את קוד המקור לדוגמה של C++:
git clone --depth 1 https://github.com/GoogleCloudPlatforms/cpp-samples
פרסום הודעות
קומפילציה והרצה של הדוגמה:
cd cpp-samples/pubsub-open-telemetry bazel run //:quickstart -- $(gcloud config get project) my-topicאחרי שמריצים את הדוגמה הזו, השורות הבאות מודפסות במסוף:
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)
צפייה בפרטי ההעברה
נכנסים לדף Trace explorer במסוף Google Cloud :
אפשר גם להשתמש בסרגל החיפוש כדי למצוא את הדף הזה.
הסרת המשאבים
כדי לא לצבור חיובים לחשבון Google Cloud על המשאבים שבהם השתמשתם בדף הזה, פועלים לפי השלבים הבאים:
כדי למחוק את הנושא שנוצר בדוגמה:
gcloud pubsub topics delete my-topic