Flexible App Engine-Umgebung für Python

Erläutert, wie Sie Cloud Profiler mit Python in der flexiblen App Engine-Umgebung initialisieren.

Codebeispiel

Python

Weitere Informationen finden Sie in der Referenzdokumentation zur Profiler Python API.

Richten Sie zur Authentifizierung bei Profiler die Standardanmeldedaten für Anwendungen ein. Weitere Informationen finden Sie unter Authentifizierung für eine lokale Entwicklungsumgebung einrichten.

import googlecloudprofiler

# Profiler initialization. It starts a daemon thread which continuously
# collects and uploads profiles. Best done as early as possible.
try:
    # service and service_version can be automatically inferred when
    # running on App Engine. project_id must be set if not running
    # on GCP.
    googlecloudprofiler.start(verbose=3)
except (ValueError, NotImplementedError) as exc:
    print(exc)  # Handle errors here

Nächste Schritte

Informationen zum Suchen und Filtern von Codebeispielen für andere Google Cloud-Produkte finden Sie im Google Cloud-Beispielbrowser.