Skip to main content

fhir_store_metrics

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

Overview

Namefhir_store_metrics
TypeResource
Idgoogle.healthcare.fhir_store_metrics

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringThe resource name of the FHIR store to get metrics for, in the format projects/{project_id}/datasets/{dataset_id}/fhirStores/{fhir_store_id}.
metricsarrayList of FhirStoreMetric by resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_fhirstore_metricsselectprojectsId, locationsId, datasetsId, fhirStoresIdGets metrics associated with the FHIR store.

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
datasetsIdstring
fhirStoresIdstring
locationsIdstring
projectsIdstring

SELECT examples

Gets metrics associated with the FHIR store.

SELECT
name,
metrics
FROM google.healthcare.fhir_store_metrics
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND datasetsId = '{{ datasetsId }}' -- required
AND fhirStoresId = '{{ fhirStoresId }}' -- required;