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

@@ -1131,3 +1131,7 @@ std::string TCPStreamPusher::PrintSetup() const {
std::optional<uint64_t> TCPStreamPusher::GetImagesWritten() const {
return total_data_acked_ok.load(std::memory_order_relaxed);
}
std::optional<uint64_t> TCPStreamPusher::GetImagesWriteError() const {
return total_data_acked_bad.load(std::memory_order_relaxed);
}