Skip to main content

studies_study_metrics

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

Overview

Namestudies_study_metrics
TypeResource
Idgoogle.healthcare.studies_study_metrics

Fields

NameDatatypeDescription
blobStorageSizeBytesstringTotal blob storage bytes for all instances in the study.
instanceCountstringNumber of instances in the study.
seriesCountstringNumber of series in the study.
structuredStorageSizeBytesstringTotal structured storage bytes for all instances in the study.
studystringThe study resource path. For example, projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/dicomStores/{dicom_store_id}/dicomWeb/studies/{study_uid}.

Methods

NameAccessible byRequired ParamsDescription
get_study_metricsSELECTdatasetsId, dicomStoresId, locationsId, projectsId, studiesIdGetStudyMetrics returns metrics for a study.

SELECT examples

GetStudyMetrics returns metrics for a study.

SELECT
blobStorageSizeBytes,
instanceCount,
seriesCount,
structuredStorageSizeBytes,
study
FROM google.healthcare.studies_study_metrics
WHERE datasetsId = '{{ datasetsId }}'
AND dicomStoresId = '{{ dicomStoresId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}'
AND studiesId = '{{ studiesId }}';