Using the API#
Introduction#
With the Monitoring API, you can work with Stackdriver metric data pertaining to monitored resources in Google Cloud Platform (GCP) or elsewhere.
Essential concepts:
- Metric data is associated with a monitored resource. A monitored resource has a resource type and a set of resource labels — key-value pairs — that identify the particular resource.
- A metric further identifies the particular kind of data that is being collected. It has a metric type and a set of metric labels that, when combined with the resource labels, identify a particular time series.
- A time series is a collection of data points associated with points or intervals in time.
Please refer to the documentation for the Monitoring API for more information.
At present, this client library supports the following features of the API:
- Querying of time series.
- Querying of metric descriptors and monitored resource descriptors.
- Creation and deletion of metric descriptors for custom metrics.
- (Writing of custom metric data will be coming soon.)
The Monitoring Client Object#
The monitoring client library generally makes its
functionality available as methods of the monitoring
Client class.
A Client instance holds
authentication credentials and the ID of the target project with
which the metric data of interest is associated. This project ID
will often refer to a Stackdriver account binding multiple
GCP projects and AWS accounts. It can also simply be the ID of
a monitored project.
Most often the authentication credentials will be determined implicitly from your environment. See Authentication for more information.
It is thus typical to create a client object as follows:
>>> from gcloud import monitoring
>>> client = monitoring.Client(project='target-project')
If you are running in Google Compute Engine or Google App Engine,
the current project is the default target project. This default
can be further overridden with the GCLOUD_PROJECT
environment variable. Using the default target project is
even easier:
>>> client = monitoring.Client()
If necessary, you can pass in credentials and project explicitly:
>>> client = monitoring.Client(project='target-project', credentials=...)
Monitored Resource Descriptors#
The available monitored resource types are defined by monitored resource
descriptors. You can fetch a list of these with the
list_resource_descriptors() method:
>>> for descriptor in client.list_resource_descriptors():
... print(descriptor.type)
Each ResourceDescriptor
has a type, a display name, a description, and a list of
LabelDescriptor instances.
See the documentation about Monitored Resources
for more information.
Metric Descriptors#
The available metric types are defined by metric descriptors.
They include platform metrics, agent metrics, and custom metrics.
You can list all of these with the
list_metric_descriptors() method:
>>> for descriptor in client.list_metric_descriptors():
... print(descriptor.type)
See MetricDescriptor and the
Metric Descriptors API documentation for more information.
You can create new metric descriptors to define custom metrics in
the custom.googleapis.com namespace. You do this by creating a
MetricDescriptor object using the
client’s metric_descriptor()
factory and then calling the object’s
create() method:
>>> from gcloud.monitoring import MetricKind, ValueType
>>> descriptor = client.metric_descriptor(
... 'custom.googleapis.com/my_metric',
... metric_kind=MetricKind.GAUGE,
... value_type=ValueType.DOUBLE,
... description='This is a simple example of a custom metric.')
>>> descriptor.create()
You can delete such a metric descriptor as follows:
>>> descriptor = client.metric_descriptor(
... 'custom.googleapis.com/my_metric')
>>> descriptor.delete()
To define a custom metric parameterized by one or more labels,
you must build the appropriate
LabelDescriptor objects
and include them in the
MetricDescriptor object
before you call
create():
>>> from gcloud.monitoring import LabelDescriptor, LabelValueType
>>> label = LabelDescriptor('response_code', LabelValueType.INT64,
... description='HTTP status code')
>>> descriptor = client.metric_descriptor(
... 'custom.googleapis.com/my_app/response_count',
... metric_kind=MetricKind.CUMULATIVE,
... value_type=ValueType.INT64,
... labels=[label],
... description='Cumulative count of HTTP responses.')
>>> descriptor.create()
Time Series Queries#
A time series includes a collection of data points and a set of
resource and metric label values.
See TimeSeries and the
Time Series API documentation for more information.
While you can obtain time series objects by iterating over a
Query object, usually it is
more useful to retrieve time series data in the form of a
pandas.DataFrame, where each column corresponds to a
single time series. For this, you must have pandas installed;
it is not a required dependency of gcloud-python.
You can display CPU utilization across your GCE instances during the last five minutes as follows:
>>> METRIC = 'compute.googleapis.com/instance/cpu/utilization'
>>> query = client.query(METRIC, minutes=5)
>>> print(query.as_dataframe())
Query objects provide a variety of
methods for refining the query. You can request temporal alignment
and cross-series reduction, and you can filter by label values.
See the client query() method
and the Query class for more
information.
For example, you can display CPU utilization during the last hour
across GCE instances with names beginning with "mycluster-",
averaged over five-minute intervals and aggregated per zone, as
follows:
>>> from gcloud.monitoring import Aligner, Reducer
>>> METRIC = 'compute.googleapis.com/instance/cpu/utilization'
>>> query = (client.query(METRIC, hours=1)
... .select_metrics(instance_name_prefix='mycluster-')
... .align(Aligner.ALIGN_MEAN, minutes=5)
... .reduce(Reducer.REDUCE_MEAN, 'resource.zone'))
>>> print(query.as_dataframe())