Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions gcloud/monitoring/metric.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ class ValueType(object):
DOUBLE = 'DOUBLE'
STRING = 'STRING'
DISTRIBUTION = 'DISTRIBUTION'
MONEY = 'MONEY'


class MetricDescriptor(object):
Expand Down Expand Up @@ -84,8 +83,7 @@ class MetricDescriptor(object):
:param value_type:
The value type of the metric. It must be one of :data:`ValueType.BOOL`,
:data:`ValueType.INT64`, :data:`ValueType.DOUBLE`,
:data:`ValueType.STRING`, :data:`ValueType.DISTRIBUTION`,
or :data:`ValueType.MONEY`.
:data:`ValueType.STRING`, or :data:`ValueType.DISTRIBUTION`.
See :class:`ValueType`.

:type unit: string
Expand Down
3 changes: 1 addition & 2 deletions gcloud/monitoring/timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ class TimeSeries(collections.namedtuple(
:param value_type:
The value type of the metric: :data:`ValueType.BOOL`,
:data:`ValueType.INT64`, :data:`ValueType.DOUBLE`,
:data:`ValueType.STRING`, :data:`ValueType.DISTRIBUTION`,
or :data:`ValueType.MONEY`.
:data:`ValueType.STRING`, or :data:`ValueType.DISTRIBUTION`.
See :class:`~gcloud.monitoring.metric.ValueType`.

:type points: list of :class:`Point`
Expand Down