hl7_v2_store_metrics
Creates, updates, deletes, gets or lists a hl7_v2_store_metrics
resource.
Overview
Name | hl7_v2_store_metrics |
Type | Resource |
Id | google.healthcare.hl7_v2_store_metrics |
Fields
The following fields are returned by SELECT
queries:
- get_hl7v2_store_metrics
Successful response
Name | Datatype | Description |
---|---|---|
name | string | The resource name of the HL7v2 store to get metrics for, in the format projects/{project_id}/datasets/{dataset_id}/hl7V2Stores/{hl7v2_store_id} . |
metrics | array | List of HL7v2 store metrics by message type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_hl7v2_store_metrics | select | projectsId , locationsId , datasetsId , hl7V2StoresId | Gets 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.
Name | Datatype | Description |
---|---|---|
datasetsId | string | |
hl7V2StoresId | string | |
locationsId | string | |
projectsId | string |
SELECT
examples
- get_hl7v2_store_metrics
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;