Skip to main content

fhir_stores_fhirstore_metrics

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

Overview

Namefhir_stores_fhirstore_metrics
TypeResource
Idgoogle.healthcare.fhir_stores_fhirstore_metrics

Fields

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

NameAccessible byRequired ParamsDescription
get_fhirstore_metricsSELECTdatasetsId, fhirStoresId, locationsId, projectsIdGets metrics associated with the FHIR store.

SELECT examples

Gets metrics associated with the FHIR store.

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