Stackdriver Monitoring V3 Client - Class MetricServiceClient (1.10.1)

Reference documentation and code samples for the Stackdriver Monitoring V3 Client class MetricServiceClient.

Service Description: Manages metric descriptors, monitored resource descriptors, and time series data.

This class provides the ability to make remote calls to the backing service through method calls that map to API methods.

Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parseName method to extract the individual identifiers contained within formatted names that are returned by the API.

Namespace

Google \ Cloud \ Monitoring \ V3 \ Client

Methods

__construct

Constructor.

Parameters
Name Description
options array

Optional. Options for configuring the service API wrapper.

↳ apiEndpoint string

The address of the API remote host. May optionally include the port, formatted as "

↳ credentials string|array|FetchAuthTokenInterface|CredentialsWrapper

The credentials to be used by the client to authorize API calls. This option accepts either a path to a credentials file, or a decoded credentials file as a PHP array. Advanced usage: In addition, this option can also accept a pre-constructed Google\Auth\FetchAuthTokenInterface object or Google\ApiCore\CredentialsWrapper object. Note that when one of these objects are provided, any settings in $credentialsConfig will be ignored.

↳ credentialsConfig array

Options used to configure credentials, including auth token caching, for the client. For a full list of supporting configuration options, see Google\ApiCore\CredentialsWrapper::build() .

↳ disableRetries bool

Determines whether or not retries defined by the client configuration should be disabled. Defaults to false.

↳ clientConfig string|array

Client method configuration, including retry settings. This option can be either a path to a JSON file, or a PHP array containing the decoded JSON data. By default this settings points to the default client config file, which is provided in the resources folder.

↳ transport string|TransportInterface

The transport used for executing network requests. May be either the string rest or grpc. Defaults to grpc if gRPC support is detected on the system. Advanced usage: Additionally, it is possible to pass in an already instantiated Google\ApiCore\Transport\TransportInterface object. Note that when this object is provided, any settings in $transportConfig, and any $apiEndpoint setting, will be ignored.

↳ transportConfig array

Configuration options that will be used to construct the transport. Options for each supported transport type should be passed in a key for that transport. For example: $transportConfig = [ 'grpc' => [...], 'rest' => [...], ]; See the Google\ApiCore\Transport\GrpcTransport::build() and Google\ApiCore\Transport\RestTransport::build() methods for the supported options.

↳ clientCertSource callable

A callable which returns the client cert as a string. This can be used to provide a certificate and private key to the transport layer for mTLS.

createMetricDescriptor

Creates a new metric descriptor.

The creation is executed asynchronously. User-created metric descriptors define custom metrics. The metric descriptor is updated if it already exists, except that metric labels are never removed.

The async variant is Google\Cloud\Monitoring\V3\Client\MetricServiceClient::createMetricDescriptorAsync() .

Parameters
Name Description
request Google\Cloud\Monitoring\V3\CreateMetricDescriptorRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\Api\MetricDescriptor
Example
use Google\ApiCore\ApiException;
use Google\Api\MetricDescriptor;
use Google\Cloud\Monitoring\V3\Client\MetricServiceClient;
use Google\Cloud\Monitoring\V3\CreateMetricDescriptorRequest;

/**
 * @param string $name The
 *                     [project](https://cloud.google.com/monitoring/api/v3#project_name) on which
 *                     to execute the request. The format is:
 *                     4
 *                     projects/[PROJECT_ID_OR_NUMBER]
 */
function create_metric_descriptor_sample(string $name): void
{
    // Create a client.
    $metricServiceClient = new MetricServiceClient();

    // Prepare the request message.
    $metricDescriptor = new MetricDescriptor();
    $request = (new CreateMetricDescriptorRequest())
        ->setName($name)
        ->setMetricDescriptor($metricDescriptor);

    // Call the API and handle any network failures.
    try {
        /** @var MetricDescriptor $response */
        $response = $metricServiceClient->createMetricDescriptor($request);
        printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $name = '[NAME]';

    create_metric_descriptor_sample($name);
}

createServiceTimeSeries

Creates 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.

The async variant is Google\Cloud\Monitoring\V3\Client\MetricServiceClient::createServiceTimeSeriesAsync() .

Parameters
Name Description
request Google\Cloud\Monitoring\V3\CreateTimeSeriesRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Example
use Google\ApiCore\ApiException;
use Google\Cloud\Monitoring\V3\Client\MetricServiceClient;
use Google\Cloud\Monitoring\V3\CreateTimeSeriesRequest;
use Google\Cloud\Monitoring\V3\TimeSeries;

/**
 * @param string $formattedName The
 *                              [project](https://cloud.google.com/monitoring/api/v3#project_name) on which
 *                              to execute the request. The format is:
 *
 *                              projects/[PROJECT_ID_OR_NUMBER]
 *                              Please see {@see MetricServiceClient::projectName()} for help formatting this field.
 */
function create_service_time_series_sample(string $formattedName): void
{
    // Create a client.
    $metricServiceClient = new MetricServiceClient();

    // Prepare the request message.
    $timeSeries = [new TimeSeries()];
    $request = (new CreateTimeSeriesRequest())
        ->setName($formattedName)
        ->setTimeSeries($timeSeries);

    // Call the API and handle any network failures.
    try {
        $metricServiceClient->createServiceTimeSeries($request);
        printf('Call completed successfully.' . PHP_EOL);
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedName = MetricServiceClient::projectName('[PROJECT]');

    create_service_time_series_sample($formattedName);
}

createTimeSeries

Creates or adds data to one or more time series.

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 method does not support resource locations constraint of an organization policy.

The async variant is Google\Cloud\Monitoring\V3\Client\MetricServiceClient::createTimeSeriesAsync() .

Parameters
Name Description
request Google\Cloud\Monitoring\V3\CreateTimeSeriesRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Example
use Google\ApiCore\ApiException;
use Google\Cloud\Monitoring\V3\Client\MetricServiceClient;
use Google\Cloud\Monitoring\V3\CreateTimeSeriesRequest;
use Google\Cloud\Monitoring\V3\TimeSeries;

/**
 * @param string $formattedName The
 *                              [project](https://cloud.google.com/monitoring/api/v3#project_name) on which
 *                              to execute the request. The format is:
 *
 *                              projects/[PROJECT_ID_OR_NUMBER]
 *                              Please see {@see MetricServiceClient::projectName()} for help formatting this field.
 */
function create_time_series_sample(string $formattedName): void
{
    // Create a client.
    $metricServiceClient = new MetricServiceClient();

    // Prepare the request message.
    $timeSeries = [new TimeSeries()];
    $request = (new CreateTimeSeriesRequest())
        ->setName($formattedName)
        ->setTimeSeries($timeSeries);

    // Call the API and handle any network failures.
    try {
        $metricServiceClient->createTimeSeries($request);
        printf('Call completed successfully.' . PHP_EOL);
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedName = MetricServiceClient::projectName('[PROJECT]');

    create_time_series_sample($formattedName);
}

deleteMetricDescriptor

Deletes a metric descriptor. Only user-created custom metrics can be deleted.

The async variant is Google\Cloud\Monitoring\V3\Client\MetricServiceClient::deleteMetricDescriptorAsync() .

Parameters
Name Description
request Google\Cloud\Monitoring\V3\DeleteMetricDescriptorRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Example
use Google\ApiCore\ApiException;
use Google\Cloud\Monitoring\V3\Client\MetricServiceClient;
use Google\Cloud\Monitoring\V3\DeleteMetricDescriptorRequest;

/**
 * @param string $formattedName The metric descriptor on which to execute the request. The format
 *                              is:
 *
 *                              projects/[PROJECT_ID_OR_NUMBER]/metricDescriptors/[METRIC_ID]
 *
 *                              An example of `[METRIC_ID]` is:
 *                              `"custom.googleapis.com/my_test_metric"`. Please see
 *                              {@see MetricServiceClient::metricDescriptorName()} for help formatting this field.
 */
function delete_metric_descriptor_sample(string $formattedName): void
{
    // Create a client.
    $metricServiceClient = new MetricServiceClient();

    // Prepare the request message.
    $request = (new DeleteMetricDescriptorRequest())
        ->setName($formattedName);

    // Call the API and handle any network failures.
    try {
        $metricServiceClient->deleteMetricDescriptor($request);
        printf('Call completed successfully.' . PHP_EOL);
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedName = MetricServiceClient::metricDescriptorName('[PROJECT]', '[METRIC_DESCRIPTOR]');

    delete_metric_descriptor_sample($formattedName);
}

getMetricDescriptor

Gets a single metric descriptor.

The async variant is Google\Cloud\Monitoring\V3\Client\MetricServiceClient::getMetricDescriptorAsync() .

Parameters
Name Description
request Google\Cloud\Monitoring\V3\GetMetricDescriptorRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\Api\MetricDescriptor
Example
use Google\ApiCore\ApiException;
use Google\Api\MetricDescriptor;
use Google\Cloud\Monitoring\V3\Client\MetricServiceClient;
use Google\Cloud\Monitoring\V3\GetMetricDescriptorRequest;

/**
 * @param string $formattedName The metric descriptor on which to execute the request. The format
 *                              is:
 *
 *                              projects/[PROJECT_ID_OR_NUMBER]/metricDescriptors/[METRIC_ID]
 *
 *                              An example value of `[METRIC_ID]` is
 *                              `"compute.googleapis.com/instance/disk/read_bytes_count"`. Please see
 *                              {@see MetricServiceClient::metricDescriptorName()} for help formatting this field.
 */
function get_metric_descriptor_sample(string $formattedName): void
{
    // Create a client.
    $metricServiceClient = new MetricServiceClient();

    // Prepare the request message.
    $request = (new GetMetricDescriptorRequest())
        ->setName($formattedName);

    // Call the API and handle any network failures.
    try {
        /** @var MetricDescriptor $response */
        $response = $metricServiceClient->getMetricDescriptor($request);
        printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedName = MetricServiceClient::metricDescriptorName('[PROJECT]', '[METRIC_DESCRIPTOR]');

    get_metric_descriptor_sample($formattedName);
}

getMonitoredResourceDescriptor

Gets a single monitored resource descriptor.

The async variant is Google\Cloud\Monitoring\V3\Client\MetricServiceClient::getMonitoredResourceDescriptorAsync() .

Parameters
Name Description
request Google\Cloud\Monitoring\V3\GetMonitoredResourceDescriptorRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\Api\MonitoredResourceDescriptor
Example
use Google\ApiCore\ApiException;
use Google\Api\MonitoredResourceDescriptor;
use Google\Cloud\Monitoring\V3\Client\MetricServiceClient;
use Google\Cloud\Monitoring\V3\GetMonitoredResourceDescriptorRequest;

/**
 * @param string $formattedName The monitored resource descriptor to get.  The format is:
 *
 *                              projects/[PROJECT_ID_OR_NUMBER]/monitoredResourceDescriptors/[RESOURCE_TYPE]
 *
 *                              The `[RESOURCE_TYPE]` is a predefined type, such as
 *                              `cloudsql_database`. Please see
 *                              {@see MetricServiceClient::monitoredResourceDescriptorName()} for help formatting this field.
 */
function get_monitored_resource_descriptor_sample(string $formattedName): void
{
    // Create a client.
    $metricServiceClient = new MetricServiceClient();

    // Prepare the request message.
    $request = (new GetMonitoredResourceDescriptorRequest())
        ->setName($formattedName);

    // Call the API and handle any network failures.
    try {
        /** @var MonitoredResourceDescriptor $response */
        $response = $metricServiceClient->getMonitoredResourceDescriptor($request);
        printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedName = MetricServiceClient::monitoredResourceDescriptorName(
        '[PROJECT]',
        '[MONITORED_RESOURCE_DESCRIPTOR]'
    );

    get_monitored_resource_descriptor_sample($formattedName);
}

listMetricDescriptors

Lists metric descriptors that match a filter.

The async variant is Google\Cloud\Monitoring\V3\Client\MetricServiceClient::listMetricDescriptorsAsync() .

Parameters
Name Description
request Google\Cloud\Monitoring\V3\ListMetricDescriptorsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\ApiCore\PagedListResponse
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Api\MetricDescriptor;
use Google\Cloud\Monitoring\V3\Client\MetricServiceClient;
use Google\Cloud\Monitoring\V3\ListMetricDescriptorsRequest;

/**
 * @param string $name The
 *                     [project](https://cloud.google.com/monitoring/api/v3#project_name) on which
 *                     to execute the request. The format is:
 *
 *                     projects/[PROJECT_ID_OR_NUMBER]
 */
function list_metric_descriptors_sample(string $name): void
{
    // Create a client.
    $metricServiceClient = new MetricServiceClient();

    // Prepare the request message.
    $request = (new ListMetricDescriptorsRequest())
        ->setName($name);

    // Call the API and handle any network failures.
    try {
        /** @var PagedListResponse $response */
        $response = $metricServiceClient->listMetricDescriptors($request);

        /** @var MetricDescriptor $element */
        foreach ($response as $element) {
            printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
        }
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $name = '[NAME]';

    list_metric_descriptors_sample($name);
}

listMonitoredResourceDescriptors

Lists monitored resource descriptors that match a filter.

The async variant is Google\Cloud\Monitoring\V3\Client\MetricServiceClient::listMonitoredResourceDescriptorsAsync() .

Parameters
Name Description
request Google\Cloud\Monitoring\V3\ListMonitoredResourceDescriptorsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\ApiCore\PagedListResponse
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Api\MonitoredResourceDescriptor;
use Google\Cloud\Monitoring\V3\Client\MetricServiceClient;
use Google\Cloud\Monitoring\V3\ListMonitoredResourceDescriptorsRequest;

/**
 * @param string $name The
 *                     [project](https://cloud.google.com/monitoring/api/v3#project_name) on which
 *                     to execute the request. The format is:
 *
 *                     projects/[PROJECT_ID_OR_NUMBER]
 */
function list_monitored_resource_descriptors_sample(string $name): void
{
    // Create a client.
    $metricServiceClient = new MetricServiceClient();

    // Prepare the request message.
    $request = (new ListMonitoredResourceDescriptorsRequest())
        ->setName($name);

    // Call the API and handle any network failures.
    try {
        /** @var PagedListResponse $response */
        $response = $metricServiceClient->listMonitoredResourceDescriptors($request);

        /** @var MonitoredResourceDescriptor $element */
        foreach ($response as $element) {
            printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
        }
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $name = '[NAME]';

    list_monitored_resource_descriptors_sample($name);
}

listTimeSeries

Lists time series that match a filter.

The async variant is Google\Cloud\Monitoring\V3\Client\MetricServiceClient::listTimeSeriesAsync() .

Parameters
Name Description
request Google\Cloud\Monitoring\V3\ListTimeSeriesRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\ApiCore\PagedListResponse
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Cloud\Monitoring\V3\Client\MetricServiceClient;
use Google\Cloud\Monitoring\V3\ListTimeSeriesRequest;
use Google\Cloud\Monitoring\V3\ListTimeSeriesRequest\TimeSeriesView;
use Google\Cloud\Monitoring\V3\TimeInterval;
use Google\Cloud\Monitoring\V3\TimeSeries;

/**
 * @param string $formattedName The
 *                              [project](https://cloud.google.com/monitoring/api/v3#project_name),
 *                              organization or folder on which to execute the request. The format is:
 *
 *                              projects/[PROJECT_ID_OR_NUMBER]
 *                              organizations/[ORGANIZATION_ID]
 *                              folders/[FOLDER_ID]
 *                              Please see {@see MetricServiceClient::workspaceName()} for help formatting this field.
 * @param string $filter        A [monitoring
 *                              filter](https://cloud.google.com/monitoring/api/v3/filters) that specifies
 *                              which time series should be returned.  The filter must specify a single
 *                              metric type, and can additionally specify metric labels and other
 *                              information. For example:
 *
 *                              metric.type = "compute.googleapis.com/instance/cpu/usage_time" AND
 *                              metric.labels.instance_name = "my-instance-name"
 * @param int    $view          Specifies which information is returned about the time series.
 */
function list_time_series_sample(string $formattedName, string $filter, int $view): void
{
    // Create a client.
    $metricServiceClient = new MetricServiceClient();

    // Prepare the request message.
    $interval = new TimeInterval();
    $request = (new ListTimeSeriesRequest())
        ->setName($formattedName)
        ->setFilter($filter)
        ->setInterval($interval)
        ->setView($view);

    // Call the API and handle any network failures.
    try {
        /** @var PagedListResponse $response */
        $response = $metricServiceClient->listTimeSeries($request);

        /** @var TimeSeries $element */
        foreach ($response as $element) {
            printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
        }
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedName = MetricServiceClient::workspaceName('[PROJECT]');
    $filter = '[FILTER]';
    $view = TimeSeriesView::FULL;

    list_time_series_sample($formattedName, $filter, $view);
}

createMetricDescriptorAsync

Parameters
Name Description
request Google\Cloud\Monitoring\V3\CreateMetricDescriptorRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

createServiceTimeSeriesAsync

Parameters
Name Description
request Google\Cloud\Monitoring\V3\CreateTimeSeriesRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

createTimeSeriesAsync

Parameters
Name Description
request Google\Cloud\Monitoring\V3\CreateTimeSeriesRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

deleteMetricDescriptorAsync

Parameters
Name Description
request Google\Cloud\Monitoring\V3\DeleteMetricDescriptorRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

getMetricDescriptorAsync

Parameters
Name Description
request Google\Cloud\Monitoring\V3\GetMetricDescriptorRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

getMonitoredResourceDescriptorAsync

Parameters
Name Description
request Google\Cloud\Monitoring\V3\GetMonitoredResourceDescriptorRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

listMetricDescriptorsAsync

Parameters
Name Description
request Google\Cloud\Monitoring\V3\ListMetricDescriptorsRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

listMonitoredResourceDescriptorsAsync

Parameters
Name Description
request Google\Cloud\Monitoring\V3\ListMonitoredResourceDescriptorsRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

listTimeSeriesAsync

Parameters
Name Description
request Google\Cloud\Monitoring\V3\ListTimeSeriesRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

static::folderName

Formats a string containing the fully-qualified path to represent a folder resource.

Parameter
Name Description
folder string
Returns
Type Description
string The formatted folder resource.

static::folderMetricDescriptorName

Formats a string containing the fully-qualified path to represent a folder_metric_descriptor resource.

Parameters
Name Description
folder string
metricDescriptor string
Returns
Type Description
string The formatted folder_metric_descriptor resource.

static::folderMonitoredResourceDescriptorName

Formats a string containing the fully-qualified path to represent a folder_monitored_resource_descriptor resource.

Parameters
Name Description
folder string
monitoredResourceDescriptor string
Returns
Type Description
string The formatted folder_monitored_resource_descriptor resource.

static::metricDescriptorName

Formats a string containing the fully-qualified path to represent a metric_descriptor resource.

Parameters
Name Description
project string
metricDescriptor string
Returns
Type Description
string The formatted metric_descriptor resource.

static::monitoredResourceDescriptorName

Formats a string containing the fully-qualified path to represent a monitored_resource_descriptor resource.

Parameters
Name Description
project string
monitoredResourceDescriptor string
Returns
Type Description
string The formatted monitored_resource_descriptor resource.

static::organizationName

Formats a string containing the fully-qualified path to represent a organization resource.

Parameter
Name Description
organization string
Returns
Type Description
string The formatted organization resource.

static::organizationMetricDescriptorName

Formats a string containing the fully-qualified path to represent a organization_metric_descriptor resource.

Parameters
Name Description
organization string
metricDescriptor string
Returns
Type Description
string The formatted organization_metric_descriptor resource.

static::organizationMonitoredResourceDescriptorName

Formats a string containing the fully-qualified path to represent a organization_monitored_resource_descriptor resource.

Parameters
Name Description
organization string
monitoredResourceDescriptor string
Returns
Type Description
string The formatted organization_monitored_resource_descriptor resource.

static::projectName

Formats a string containing the fully-qualified path to represent a project resource.

Parameter
Name Description
project string
Returns
Type Description
string The formatted project resource.

static::projectMetricDescriptorName

Formats a string containing the fully-qualified path to represent a project_metric_descriptor resource.

Parameters
Name Description
project string
metricDescriptor string
Returns
Type Description
string The formatted project_metric_descriptor resource.

static::projectMonitoredResourceDescriptorName

Formats a string containing the fully-qualified path to represent a project_monitored_resource_descriptor resource.

Parameters
Name Description
project string
monitoredResourceDescriptor string
Returns
Type Description
string The formatted project_monitored_resource_descriptor resource.

static::workspaceName

Formats a string containing the fully-qualified path to represent a workspace resource.

Parameter
Name Description
project string
Returns
Type Description
string The formatted workspace resource.

static::parseName

Parses a formatted name string and returns an associative array of the components in the name.

The following name formats are supported: Template: Pattern

  • folder: folders/{folder}
  • folderMetricDescriptor: folders/{folder}/metricDescriptors/{metric_descriptor=**}
  • folderMonitoredResourceDescriptor: folders/{folder}/monitoredResourceDescriptors/{monitored_resource_descriptor}
  • metricDescriptor: projects/{project}/metricDescriptors/{metric_descriptor=**}
  • monitoredResourceDescriptor: projects/{project}/monitoredResourceDescriptors/{monitored_resource_descriptor}
  • organization: organizations/{organization}
  • organizationMetricDescriptor: organizations/{organization}/metricDescriptors/{metric_descriptor=**}
  • organizationMonitoredResourceDescriptor: organizations/{organization}/monitoredResourceDescriptors/{monitored_resource_descriptor}
  • project: projects/{project}
  • projectMetricDescriptor: projects/{project}/metricDescriptors/{metric_descriptor=**}
  • projectMonitoredResourceDescriptor: projects/{project}/monitoredResourceDescriptors/{monitored_resource_descriptor}
  • workspace: projects/{project}

The optional $template argument can be supplied to specify a particular pattern, and must match one of the templates listed above. If no $template argument is provided, or if the $template argument does not match one of the templates listed, then parseName will check each of the supported templates, and return the first match.

Parameters
Name Description
formattedName string

The formatted name string

template string

Optional name of template to match

Returns
Type Description
array An associative array from name component IDs to component values.