diff options
Diffstat (limited to 'src/zenstore')
| -rw-r--r-- | src/zenstore/include/zenstore/cidstore.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/zenstore/include/zenstore/cidstore.h b/src/zenstore/include/zenstore/cidstore.h index c00e0449f..afaf23cb7 100644 --- a/src/zenstore/include/zenstore/cidstore.h +++ b/src/zenstore/include/zenstore/cidstore.h @@ -30,9 +30,9 @@ struct CidStoreSize struct CidStoreStats { - uint64_t HitCount; - uint64_t MissCount; - uint64_t WriteCount; + uint64_t HitCount = 0; + uint64_t MissCount = 0; + uint64_t WriteCount = 0; metrics::RequestStatsSnapshot AddChunkOps; metrics::RequestStatsSnapshot FindChunkOps; // metrics::RequestStatsSnapshot ContainChunkOps; |