Class Dashboard (2.15.0)

Dashboard(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A Google Stackdriver dashboard. Dashboards define the content and layout of pages in the Stackdriver web application.

This message has oneof_ fields (mutually exclusive fields). For each oneof, at most one member field can be set at the same time. Setting any member of the oneof automatically clears all other members.

.. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields

Attributes

NameDescription
name str
Identifier. The resource name of the dashboard.
display_name str
Required. The mutable, human-readable name.
etag str
etag is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. An etag is returned in the response to GetDashboard, and users are expected to put that etag in the request to UpdateDashboard to ensure that their change will be applied to the same version of the Dashboard configuration. The field should not be passed during dashboard creation.
grid_layout google.cloud.monitoring_dashboard_v1.types.GridLayout
Content is arranged with a basic layout that re-flows a simple list of informational elements like widgets or tiles. This field is a member of oneof_ layout.
mosaic_layout google.cloud.monitoring_dashboard_v1.types.MosaicLayout
The content is arranged as a grid of tiles, with each content widget occupying one or more grid blocks. This field is a member of oneof_ layout.
row_layout google.cloud.monitoring_dashboard_v1.types.RowLayout
The content is divided into equally spaced rows and the widgets are arranged horizontally. This field is a member of oneof_ layout.
column_layout google.cloud.monitoring_dashboard_v1.types.ColumnLayout
The content is divided into equally spaced columns and the widgets are arranged vertically. This field is a member of oneof_ layout.
dashboard_filters MutableSequence[google.cloud.monitoring_dashboard_v1.types.DashboardFilter]
Filters to reduce the amount of data charted based on the filter criteria.
labels MutableMapping[str, str]
Labels applied to the dashboard

Classes

LabelsEntry

LabelsEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)

The abstract base class for a message.

Parameters
NameDescription
kwargs dict

Keys and values corresponding to the fields of the message.

mapping Union[dict, .Message]

A dictionary or message to be used to determine the values for this message.

ignore_unknown_fields Optional(bool)

If True, do not raise errors for unknown fields. Only applied if mapping is a mapping type or there are keyword parameters.