Skip to main content

dicom_stores_dicomstore_metrics

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

Overview

Namedicom_stores_dicomstore_metrics
TypeResource
Idgoogle.healthcare.dicom_stores_dicomstore_metrics

Fields

NameDatatypeDescription
namestringResource name of the DICOM store, of the form projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/dicomStores/{dicom_store_id}.
blobStorageSizeBytesstringTotal blob storage bytes for all instances in the store.
instanceCountstringNumber of instances in the store.
seriesCountstringNumber of series in the store.
structuredStorageSizeBytesstringTotal structured storage bytes for all instances in the store.
studyCountstringNumber of studies in the store.

Methods

NameAccessible byRequired ParamsDescription
get_dicomstore_metricsSELECTdatasetsId, dicomStoresId, locationsId, projectsIdGets 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 }}';