studies_study_metrics
Creates, updates, deletes, gets or lists a studies_study_metrics
resource.
Overview
Name | studies_study_metrics |
Type | Resource |
Id | google.healthcare.studies_study_metrics |
Fields
Name | Datatype | Description |
---|---|---|
blobStorageSizeBytes | string | Total blob storage bytes for all instances in the study. |
instanceCount | string | Number of instances in the study. |
seriesCount | string | Number of series in the study. |
structuredStorageSizeBytes | string | Total structured storage bytes for all instances in the study. |
study | string | The study resource path. For example, projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/dicomStores/{dicom_store_id}/dicomWeb/studies/{study_uid} . |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_study_metrics | SELECT | datasetsId, dicomStoresId, locationsId, projectsId, studiesId | GetStudyMetrics 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 }}';