dicom_store_metrics
Creates, updates, deletes, gets or lists a dicom_store_metrics
resource.
Overview
Name | dicom_store_metrics |
Type | Resource |
Id | google.healthcare.dicom_store_metrics |
Fields
The following fields are returned by SELECT
queries:
- get_dicomstore_metrics
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Resource name of the DICOM store, of the form projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/dicomStores/{dicom_store_id} . |
blobStorageSizeBytes | string (int64) | Total blob storage bytes for all instances in the store. |
instanceCount | string (int64) | Number of instances in the store. |
seriesCount | string (int64) | Number of series in the store. |
structuredStorageSizeBytes | string (int64) | Total structured storage bytes for all instances in the store. |
studyCount | string (int64) | Number of studies in the store. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_dicomstore_metrics | select | projectsId , locationsId , datasetsId , dicomStoresId | Gets 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.
Name | Datatype | Description |
---|---|---|
datasetsId | string | |
dicomStoresId | string | |
locationsId | string | |
projectsId | string |
SELECT
examples
- get_dicomstore_metrics
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;