From 6e587f57d8c5cc9d37346bfa49eda174e01a697e Mon Sep 17 00:00:00 2001 From: Dan Engelbrecht Date: Mon, 20 Oct 2025 13:37:58 +0200 Subject: fix builds storage stats (#590) * restructure builds storage stats to match web-ui expectations --- src/zenstore/include/zenstore/buildstore/buildstore.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'src/zenstore/include') diff --git a/src/zenstore/include/zenstore/buildstore/buildstore.h b/src/zenstore/include/zenstore/buildstore/buildstore.h index 87b7dd812..76cba05b9 100644 --- a/src/zenstore/include/zenstore/buildstore/buildstore.h +++ b/src/zenstore/include/zenstore/buildstore/buildstore.h @@ -45,11 +45,13 @@ public: struct StorageStats { - uint64_t EntryCount = 0; - uint64_t BlobCount = 0; - uint64_t BlobBytes = 0; - uint64_t MetadataCount = 0; - uint64_t MetadataByteCount = 0; + uint64_t EntryCount = 0; + uint64_t BlobCount = 0; + uint64_t BlobBytes = 0; + uint64_t MetadataCount = 0; + uint64_t MetadataByteCount = 0; + uint64_t BlobLogByteCount = 0; + uint64_t MetadataLogByteCount = 0; }; StorageStats GetStorageStats() const; -- cgit v1.2.3