Stackdriver Trace API client library
Project description
The Stackdriver Trace API sends application trace data to Stackdriver Trace for viewing. Trace data is collected for all App Engine applications by default. Trace data from other applications can be provided using this API.
Quick Start
In order to use this library, you first need to go through the following steps:
Installation
Install this library in a virtualenv using pip. virtualenv is a tool to create isolated Python environments. The basic problem it addresses is one of dependencies and versions, and indirectly permissions.
With virtualenv, it’s possible to install this library without needing system install permissions, and without clashing with the installed system dependencies.
Supported Python Versions
Python >= 3.5
Deprecated Python Versions
Python == 2.7. Python 2.7 support will be removed on January 1, 2020.
Mac/Linux
pip install virtualenv
virtualenv <your-env>
source <your-env>/bin/activate
<your-env>/bin/pip install google-cloud-trace
Windows
pip install virtualenv
virtualenv <your-env>
<your-env>\Scripts\activate
<your-env>\Scripts\pip.exe install google-cloud-trace
For more information on setting up your Python development environment, such as installing pip and virtualenv on your system, please refer to Python Development Environment Setup Guide for Google Cloud Platform.
Example Usage
from google.cloud.trace import trace_service_client
client = trace_service_client.TraceServiceClient()
project_id = 'your-project-123'
# Iterate over all results
for element in client.list_traces(project_id):
# process element
pass
Next Steps
Read the Client Library Documentation for Stackdriver Trace API to see other available methods on the client.
Read the Product documentation to learn more about the product and see How-to Guides.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for google-cloud-trace-0.23.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a3fad1ae2b780dd5e6d5ddc626db722749405b7b66f3c2e5e87a9d29a4819c8 |
|
MD5 | 7a267d0dfe53b2784cbccde0f7c75941 |
|
BLAKE2b-256 | a1cc8e26c6a54a2fca71f80771769d1918062b76bae223d4c286360d66ae31da |
Hashes for google_cloud_trace-0.23.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e92265022f3bf47abe171aad41647e0e61a46d71fb9dcc4cf6bbe4a67f63ab6 |
|
MD5 | f34a04659f4e027061338a6c646e83ea |
|
BLAKE2b-256 | 866598cea047ee0e65d5a3867b2ab1eb2393ba27da5e271ed9e861819565d3f1 |