Skip to main content

time_series_service

Creates, updates, deletes, gets or lists a time_series_service resource.

Overview

Nametime_series_service
TypeResource
Idgoogle.monitoring.time_series_service

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
projects_time_series_create_serviceINSERTprojectsIdCreates or adds data to one or more service time series. A service time series is a time series for a metric from a Google Cloud service. The response is empty if all time series in the request were written. If any time series could not be written, a corresponding failure message is included in the error response. This endpoint rejects writes to user-defined metrics. This method is only for use by Google Cloud services. Use projects.timeSeries.create instead.

INSERT example

Use the following StackQL query and manifest file to create a new time_series_service resource.

/*+ create */
INSERT INTO google.monitoring.time_series_service (
projectsId,
timeSeries
)
SELECT
'{{ projectsId }}',
'{{ timeSeries }}'
;