diff options
| author | Dan Engelbrecht <[email protected]> | 2023-09-14 13:41:06 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-09-14 19:41:06 +0200 |
| commit | b57cb102bdbba3ef3fbcb3d9c66b78e7ca406891 (patch) | |
| tree | 812c13d3a2ff6c1c617fddb401845a744f13fcd5 /src/zenserver/projectstore/httpprojectstore.h | |
| parent | enable sentry personal information (ip/username) on shared instances (#404) (diff) | |
| download | zen-b57cb102bdbba3ef3fbcb3d9c66b78e7ca406891.tar.xz zen-b57cb102bdbba3ef3fbcb3d9c66b78e7ca406891.zip | |
More statistics for Cache, Project Store and Cid Store (#405)
Cache: requestcount, badrequestcount, writes
Project Store: requestcount
Cid Store: cidhits, cidmisses, cidwrites
Diffstat (limited to 'src/zenserver/projectstore/httpprojectstore.h')
| -rw-r--r-- | src/zenserver/projectstore/httpprojectstore.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zenserver/projectstore/httpprojectstore.h b/src/zenserver/projectstore/httpprojectstore.h index 5c558f8d2..739dabe23 100644 --- a/src/zenserver/projectstore/httpprojectstore.h +++ b/src/zenserver/projectstore/httpprojectstore.h @@ -56,6 +56,7 @@ private: std::atomic_uint64_t ChunkHitCount{}; std::atomic_uint64_t ChunkMissCount{}; std::atomic_uint64_t ChunkWriteCount{}; + std::atomic_uint64_t RequestCount{}; std::atomic_uint64_t BadRequestCount{}; }; |