study_metrics
Creates, updates, deletes, gets or lists a study_metrics
resource.
Overview
Name | study_metrics |
Type | Resource |
Id | google.healthcare.study_metrics |
Fields
The following fields are returned by SELECT
queries:
- get_study_metrics
Successful response
Name | Datatype | Description |
---|---|---|
blobStorageSizeBytes | string (int64) | Total blob storage bytes for all instances in the study. |
instanceCount | string (int64) | Number of instances in the study. |
seriesCount | string (int64) | Number of series in the study. |
structuredStorageSizeBytes | string (int64) | 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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_study_metrics | select | projectsId , locationsId , datasetsId , dicomStoresId , studiesId | GetStudyMetrics returns metrics for a study. |
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.
Name | Datatype | Description |
---|---|---|
datasetsId | string | |
dicomStoresId | string | |
locationsId | string | |
projectsId | string | |
studiesId | string |
SELECT
examples
- get_study_metrics
GetStudyMetrics returns metrics for a study.
SELECT
blobStorageSizeBytes,
instanceCount,
seriesCount,
structuredStorageSizeBytes,
study
FROM google.healthcare.study_metrics
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND datasetsId = '{{ datasetsId }}' -- required
AND dicomStoresId = '{{ dicomStoresId }}' -- required
AND studiesId = '{{ studiesId }}' -- required;