v1

latestOpenAPI 3.0.02026-07-132990743.4 KB
Instances

Get instance statistics

Get statistics about the given instance

get/instances/{id}/statistics

Path parameters

idstring required

Orthanc identifier of the instance of interest

Response

DicomDiskSizestring

Size on the disk of the DICOM instances associated with the instance, expressed in bytes

DicomDiskSizeMBnumber

Size on the disk of the DICOM instances associated with the instance, expressed in megabytes (MB)

DicomUncompressedSizestring

Size on the disk of the uncompressed DICOM instances associated with the instance, expressed in bytes

DicomUncompressedSizeMBnumber

Size on the disk of the uncompressed DICOM instances associated with the instance, expressed in megabytes (MB)

DiskSizestring

Size of the instance on the disk in bytes, expressed as a string for 64bit compatibility with JSON

DiskSizeMBnumber

Size of the instance on the disk, expressed in megabytes (MB)

UncompressedSizestring

Size of the instance after decompression in bytes, expressed as a string for 64bit compatibility with JSON

UncompressedSizeMBnumber

Size of the instance after decompression, expressed in megabytes (MB). This is different from DiskSizeMB iff StorageCompression is true.

Example response

{
  "DicomDiskSize": "368852",
  "DicomDiskSizeMB": 0,
  "DicomUncompressedSize": "368852",
  "DicomUncompressedSizeMB": 0,
  "DiskSize": "368852",
  "DiskSizeMB": 0,
  "UncompressedSize": "368852",
  "UncompressedSizeMB": 0
}