This directory contains samples for Stackdriver Monitoring. `Stackdriver Monitoring `_ 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 sample requires you to have authentication setup. Refer to the Authentication Getting Started Guide for instructions on setting up credentials for applications.
Clone python-docs-samples and change directory to the sample directory you want to use.
$ git clone https://github.com/GoogleCloudPlatform/python-docs-samples.git
Install pip and virtualenv if you do not already have them. You may want to refer to the Python Development Environment Setup Guide for Google Cloud Platform for instructions.
Create a virtualenv. Samples are compatible with Python 2.7 and 3.4+.
$ virtualenv env $ source env/bin/activate
Install the dependencies needed to run the samples.
$ pip install -r requirements.txt
To run this sample:
$ python list_resources.py
usage: list_resources.py [-h] --project_id PROJECT_ID
Sample command-line program for retrieving Stackdriver Monitoring API V3
data.
See README.md for instructions on setting up your development environment.
To run locally:
python list_resources.py --project_id=<YOUR-PROJECT-ID>
optional arguments:
-h, --help show this help message and exit
--project_id PROJECT_ID
Project ID you want to access.
To run this sample:
$ python custom_metric.py
usage: custom_metric.py [-h] --project_id PROJECT_ID
Sample command-line program for writing and reading Stackdriver Monitoring
API V3 custom metrics.
Simple command-line program to demonstrate connecting to the Google
Monitoring API to write custom metrics and read them back.
See README.md for instructions on setting up your development environment.
This example creates a custom metric based on a hypothetical GAUGE measurement.
To run locally:
python custom_metric.py --project_id=<YOUR-PROJECT-ID>
optional arguments:
-h, --help show this help message and exit
--project_id PROJECT_ID
Project ID you want to access.