Skip to main content

hl7_v2_store_metrics

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

Overview

Namehl7_v2_store_metrics
TypeResource
Idgoogle.healthcare.hl7_v2_store_metrics

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringThe resource name of the HL7v2 store to get metrics for, in the format projects/{project_id}/datasets/{dataset_id}/hl7V2Stores/{hl7v2_store_id}.
metricsarrayList of HL7v2 store metrics by message type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_hl7v2_store_metricsselectprojectsId, locationsId, datasetsId, hl7V2StoresIdGets metrics associated with the HL7v2 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
hl7V2StoresIdstring
locationsIdstring
projectsIdstring

SELECT examples

Gets metrics associated with the HL7v2 store.

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