Skip to main content

metric_namespaces

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

Overview

Namemetric_namespaces
TypeResource
Idazure.developer_loadtesting.metric_namespaces

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe metric namespace name.
descriptionstringThe namespace description.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_metric_namespacesselecttest_run_id, endpointList the metric namespaces for a load test run. List the metric namespaces for a load test run.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
endpointstringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client endpoint parameter. (default: )
test_run_idstringUnique name for the load test run, must contain only lower-case alphabetic, numeric, underscore or hyphen characters. Required.

SELECT examples

List the metric namespaces for a load test run. List the metric namespaces for a load test run.

SELECT
name,
description
FROM azure.developer_loadtesting.metric_namespaces
WHERE test_run_id = '{{ test_run_id }}' -- required
AND endpoint = '{{ endpoint }}' -- required
;