Skip to main content

dicom_store_metrics

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

Overview

Namedicom_store_metrics
TypeResource
Idgoogle.healthcare.dicom_store_metrics

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringResource name of the DICOM store, of the form projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/dicomStores/{dicom_store_id}.
blobStorageSizeBytesstring (int64)Total blob storage bytes for all instances in the store.
instanceCountstring (int64)Number of instances in the store.
seriesCountstring (int64)Number of series in the store.
structuredStorageSizeBytesstring (int64)Total structured storage bytes for all instances in the store.
studyCountstring (int64)Number of studies in the store.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_dicomstore_metricsselectprojectsId, locationsId, datasetsId, dicomStoresIdGets metrics associated with the DICOM 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
dicomStoresIdstring
locationsIdstring
projectsIdstring

SELECT examples

Gets metrics associated with the DICOM store.

SELECT
name,
blobStorageSizeBytes,
instanceCount,
seriesCount,
structuredStorageSizeBytes,
studyCount
FROM google.healthcare.dicom_store_metrics
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND datasetsId = '{{ datasetsId }}' -- required
AND dicomStoresId = '{{ dicomStoresId }}' -- required;