dicom_stores_dicomstore_metrics
Creates, updates, deletes, gets or lists a dicom_stores_dicomstore_metrics
resource.
Overview
Name | dicom_stores_dicomstore_metrics |
Type | Resource |
Id | google.healthcare.dicom_stores_dicomstore_metrics |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Resource name of the DICOM store, of the form projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/dicomStores/{dicom_store_id} . |
blobStorageSizeBytes | string | Total blob storage bytes for all instances in the store. |
instanceCount | string | Number of instances in the store. |
seriesCount | string | Number of series in the store. |
structuredStorageSizeBytes | string | Total structured storage bytes for all instances in the store. |
studyCount | string | Number of studies in the store. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_dicomstore_metrics | SELECT | datasetsId, dicomStoresId, locationsId, projectsId | Gets metrics associated with the DICOM store. |
SELECT
examples
Gets metrics associated with the DICOM store.
SELECT
name,
blobStorageSizeBytes,
instanceCount,
seriesCount,
structuredStorageSizeBytes,
studyCount
FROM google.healthcare.dicom_stores_dicomstore_metrics
WHERE datasetsId = '{{ datasetsId }}'
AND dicomStoresId = '{{ dicomStoresId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';