Skip to content

Commit

Permalink
add cache store stats
Browse files Browse the repository at this point in the history
  • Loading branch information
YangKian committed Jul 2, 2024
1 parent d28d55a commit 1e7be91
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions hstream.proto
Original file line number Diff line number Diff line change
Expand Up @@ -765,13 +765,24 @@ enum QueryStats {

enum ViewStats { TotalExecuteQueries = 0; }

enum CacheStoreStats {
CSAppendInBytes = 0;
CSAppendInRecords = 1;
CSAppendTotal = 2;
CSAppendFailed = 3;
CSReadInBytes = 4;
CSReadInRecords = 5;
CSDeliveredInRecords = 6;
}

message StatType {
oneof stat {
StreamStats streamStat = 1;
SubscriptionStats subStat = 2;
ConnectorStats connStat = 3;
QueryStats queryStat = 4;
ViewStats viewStat = 5;
CacheStoreStats cacheStoreStat = 6;
}
}

Expand Down

0 comments on commit 1e7be91

Please sign in to comment.