OpenAPI: Export images written and images with write error

This commit is contained in:
2026-03-05 16:12:31 +01:00
parent 7147a31167
commit 92dbc35098
10 changed files with 129 additions and 5 deletions

View File

@@ -26,5 +26,19 @@ export type image_pusher_status = {
*
*/
connected_writers: number;
/**
* Number of images written to the image socket.
* This number is updated live during operation for TCP/IP image socket and direct HDF5 writer.
* It is updated at the end of experiment for ZeroMQ image socket.
*
*/
images_written?: number;
/**
* Number of images that could not be written to the image socket.
* This number is updated live during operation for TCP/IP image socket.
* No other socket use it.
*
*/
images_write_error?: number;
};