v1

latestOpenAPI 3.0.02026-07-142740323.4 KB
System

Get database statistics

Get statistics related to the database of Orthanc

get/statistics

Response

CountInstancesnumber

Number of DICOM instances stored in Orthanc

CountPatientsnumber

Number of patients stored in Orthanc

CountSeriesnumber

Number of DICOM series stored in Orthanc

CountStudiesnumber

Number of DICOM studies stored in Orthanc

TotalDiskSizestring

Size of the storage area (in bytes)

TotalDiskSizeMBnumber

Size of the storage area (in megabytes)

TotalUncompressedSizestring

Total size of all the files once uncompressed (in bytes). This corresponds to TotalDiskSize if no compression is enabled, cf. StorageCompression configuration option

TotalUncompressedSizeMBnumber

Total size of all the files once uncompressed (in megabytes)

Example response

{
  "CountInstances": 2552,
  "CountPatients": 8,
  "CountSeries": 26,
  "CountStudies": 8,
  "TotalDiskSize": "1068132148",
  "TotalDiskSizeMB": 1018,
  "TotalUncompressedSize": "1068132148",
  "TotalUncompressedSizeMB": 1018
}