Python Client for Stackdriver Monitoring
Project description
Python idiomatic client for Stackdriver Monitoring
Quick Start
$ pip install --upgrade google-cloud-monitoring
Authentication
With google-cloud-python we try to make authentication as painless as possible. Check out the Authentication section in our documentation to learn more. You may also find the authentication document shared by all the google-cloud-* libraries to be helpful.
Using the API
Stackdriver Monitoring (Monitoring API docs) collects metrics, events, and metadata from Google Cloud Platform, Amazon Web Services (AWS), hosted uptime probes, application instrumentation, and a variety of common application components including Cassandra, Nginx, Apache Web Server, Elasticsearch and many others. Stackdriver ingests that data and generates insights via dashboards, charts, and alerts.
This package currently supports all Monitoring API operations other than writing custom metrics.
List available metric types:
from google.cloud import monitoring
client = monitoring.Client()
for descriptor in client.list_metric_descriptors():
print(descriptor.type)
Display CPU utilization across your GCE instances during the last five minutes:
metric = 'compute.googleapis.com/instance/cpu/utilization'
query = client.query(metric, minutes=5)
print(query.as_dataframe())
See the google-cloud-python API monitoring documentation to learn how to connect to Stackdriver Monitoring using this Client Library.
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-monitoring-0.20.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b8d448a9459c217fab3424e0aef71effe3b918e0b6699d07b674629382bd0d9 |
|
MD5 | 9b07d3e25e936d5470db4417cc2a2e1d |
|
BLAKE2b-256 | 33b3c3cc0de4f925e8975faa36841bd8d87f76e33e59a263988d06c6abff2fc9 |
Hashes for google_cloud_monitoring-0.20.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b0d46fb788c3fd474b6cabf6bb60769e71d41b5894efe99e23b91fe5bb82893 |
|
MD5 | 9510eb80ae37c146ff21fd7f3548dfec |
|
BLAKE2b-256 | 51047fec2ef61071ae556a5dfd9729f6c45c7f5d9e484668ee933a45bb29b85f |