---
title: "POST /v3/{+name}/collectdTimeSeries"
method: POST
path: "/v3/{+name}/collectdTimeSeries"
tags: ["projects"]
---

# POST /v3/{+name}/collectdTimeSeries

`POST /v3/{+name}/collectdTimeSeries`

Cloud Monitoring Agent only: Creates a new time series.This method is only for use by the Cloud Monitoring Agent. Use projects.timeSeries.create instead.

## Path parameters

- `name` string, required

## Request body

- CreateCollectdTimeSeriesRequest — The CreateCollectdTimeSeries request.
  - `collectdPayloads` CollectdPayload[] — The collectd payloads representing the time series data. You must not include more than a single point for each time series, so no two payloads can have the same values for all of the fields plugin, plugin_instance, type, and type_instance.
    - `pluginInstance` string — The instance name of the plugin Example: "hdcl".
    - `type` string — The measurement type. Example: "memory".
    - `typeInstance` string — The measurement type instance. Example: "used".
    - `metadata` object — The measurement metadata. Example: "process_id" -> 12345
    - `startTime` string, google-datetime — The start time of the interval.
    - `endTime` string, google-datetime — The end time of the interval.
    - `values` CollectdValue[] — The measured values during this time interval. Each value must have a different data_source_name.
      - `dataSourceType` 'UNSPECIFIED_DATA_SOURCE_TYPE' | 'GAUGE' | 'COUNTER' | 'DERIVE' | 'ABSOLUTE' — The type of measurement.
      - `value` TypedValue — A single strongly-typed value.
        - `stringValue` string — A variable-length string value.
        - `boolValue` boolean — A Boolean value: true or false.
        - `int64Value` string, int64 — A 64-bit integer. Its range is approximately ±9.2x1018.
        - `distributionValue` Distribution — Distribution contains summary statistics for a population of values. It optionally contains a histogram representing the distribution of those values across a set of buckets.The summary statistics are the count, mean, sum of the squared deviation from the mean, the minimum, and the maximum of the set of population of values. The histogram is based on a sequence of buckets and gives a count of values that fall into each bucket. The boundaries of the buckets are given either explicitly or by formulas for buckets of fixed or exponentially increasing widths.Although it is not forbidden, it is generally a bad idea to include non-finite values (infinities or NaNs) in the population of values, as this will render the mean and sum_of_squared_deviation fields meaningless.
          - `count` string, int64 — The number of values in the population. Must be non-negative. This value must equal the sum of the values in bucket_counts if a histogram is provided.
          - `range` Range — The range of the population values.
            - `min` number, double — The minimum of the population values.
            - `max` number, double — The maximum of the population values.
          - `bucketCounts` string[] — Required in the Cloud Monitoring API v3. The values for each bucket specified in bucket_options. The sum of the values in bucketCounts must equal the value in the count field of the Distribution object. The order of the bucket counts follows the numbering schemes described for the three bucket types. The underflow bucket has number 0; the finite buckets, if any, have numbers 1 through N-2; and the overflow bucket has number N-1. The size of bucket_counts must not be greater than N. If the size is less than N, then the remaining buckets are assigned values of zero.
          - `mean` number, double — The arithmetic mean of the values in the population. If count is zero then this field must be zero.
          - `sumOfSquaredDeviation` number, double — The sum of squared deviations from the mean of the values in the population. For values x_i this is: Sum[i=1..n]((x_i - mean)^2) Knuth, "The Art of Computer Programming", Vol. 2, page 232, 3rd edition describes Welford's method for accumulating this sum in one pass.If count is zero then this field must be zero.
          - `bucketOptions` BucketOptions — BucketOptions describes the bucket boundaries used to create a histogram for the distribution. The buckets can be in a linear sequence, an exponential sequence, or each bucket can be specified explicitly. BucketOptions does not include the number of values in each bucket.A bucket has an inclusive lower bound and exclusive upper bound for the values that are counted for that bucket. The upper bound of a bucket must be strictly greater than the lower bound. The sequence of N buckets for a distribution consists of an underflow bucket (number 0), zero or more finite buckets (number 1 through N - 2) and an overflow bucket (number N - 1). The buckets are contiguous: the lower bound of bucket i (i > 0) is the same as the upper bound of bucket i - 1. The buckets span the whole range of finite values: lower bound of the underflow bucket is -infinity and the upper bound of the overflow bucket is +infinity. The finite buckets are so-called because both bounds are finite.
            - `exponentialBuckets` Exponential — Specifies an exponential sequence of buckets that have a width that is proportional to the value of the lower bound. Each bucket represents a constant relative uncertainty on a specific value in the bucket.There are num_finite_buckets + 2 (= N) buckets. Bucket i has the following boundaries:Upper bound (0 <= i < N-1): scale * (growth_factor ^ i).Lower bound (1 <= i < N): scale * (growth_factor ^ (i - 1)).
              - …
            - `linearBuckets` Linear — Specifies a linear sequence of buckets that all have the same width (except overflow and underflow). Each bucket represents a constant absolute uncertainty on the specific value in the bucket.There are num_finite_buckets + 2 (= N) buckets. Bucket i has the following boundaries:Upper bound (0 <= i < N-1): offset + (width * i).Lower bound (1 <= i < N): offset + (width * (i - 1)).
              - …
            - `explicitBuckets` Explicit — Specifies a set of buckets with arbitrary widths.There are size(bounds) + 1 (= N) buckets. Bucket i has the following boundaries:Upper bound (0 <= i < N-1): boundsi Lower bound (1 <= i < N); boundsi - 1The bounds field must contain at least one element. If bounds has only one element, then there are no finite buckets, and that single element is the common boundary of the overflow and underflow buckets.
              - …
          - `exemplars` Exemplar[] — Must be in increasing order of value field.
            - `attachments` object[] — Contextual information about the example value. Examples are:Trace: type.googleapis.com/google.monitoring.v3.SpanContextLiteral string: type.googleapis.com/google.protobuf.StringValueLabels dropped during aggregation: type.googleapis.com/google.monitoring.v3.DroppedLabelsThere may be only a single attachment of any given message type in a single exemplar, and this is enforced by the system.
              - …
            - `timestamp` string, google-datetime — The observation (sampling) time of the above value.
            - `value` number, double — Value of the exemplar point. This value determines to which bucket the exemplar belongs.
        - `doubleValue` number, double — A 64-bit double-precision floating-point number. Its magnitude is approximately ±10±300 and it has 16 significant digits of precision.
      - `dataSourceName` string — The data source for the collectd value. For example, there are two data sources for network measurements: "rx" and "tx".
    - `plugin` string — The name of the plugin. Example: "disk".
  - `collectdVersion` string — The version of collectd that collected the data. Example: "5.3.0-192.el6".
  - `resource` MonitoredResource — An object representing a resource that can be used for monitoring, logging, billing, or other purposes. Examples include virtual machine instances, databases, and storage devices such as disks. The type field identifies a MonitoredResourceDescriptor object that describes the resource's schema. Information in the labels field identifies the actual resource and its attributes according to the schema. For example, a particular Compute Engine VM instance could be represented by the following object, because the MonitoredResourceDescriptor for "gce_instance" has labels "project_id", "instance_id" and "zone": { "type": "gce_instance", "labels": { "project_id": "my-project", "instance_id": "12345678901234", "zone": "us-central1-a" }}
    - `type` string — Required. The monitored resource type. This field must match the type field of a MonitoredResourceDescriptor object. For example, the type of a Compute Engine VM instance is gce_instance. For a list of types, see Monitoring resource types (https://cloud.google.com/monitoring/api/resources) and Logging resource types (https://cloud.google.com/logging/docs/api/v2/resource-list).
    - `labels` object — Required. Values for all of the labels listed in the associated monitored resource descriptor. For example, Compute Engine VM instances use the labels "project_id", "instance_id", and "zone".

## Response `200`

Successful response

---

[API](https://skmtc.net/google/apis/monitoring.md) · [All operations](https://skmtc.net/google/apis/monitoring/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/google/monitoring/versions/11ce0f8d9e4c/schema)
