File tree Expand file tree Collapse file tree 3 files changed +384
-327
lines changed
rust/cubestore/cubestore/src Expand file tree Collapse file tree 3 files changed +384
-327
lines changed Original file line number Diff line number Diff line change @@ -13,3 +13,9 @@ pub static DATA_QUERY_TIME_MS: Histogram = metrics::histogram("cs.sql.query.data
1313/// Incoming SQL queries that only read metadata or do trivial computations.
1414pub static META_QUERIES : Counter = metrics:: counter ( "cs.sql.query.meta" ) ;
1515pub static META_QUERY_TIME_MS : Histogram = metrics:: histogram ( "cs.sql.query.meta.ms" ) ;
16+ /// Incoming cache queries.
17+ pub static CACHE_QUERIES : Counter = metrics:: counter ( "cs.sql.query.cache" ) ;
18+ pub static CACHE_QUERY_TIME_MS : Histogram = metrics:: histogram ( "cs.sql.query.cache.ms" ) ;
19+ /// Incoming queue queries.
20+ pub static QUEUE_QUERIES : Counter = metrics:: counter ( "cs.sql.query.queue" ) ;
21+ pub static QUEUE_QUERY_TIME_MS : Histogram = metrics:: histogram ( "cs.sql.query.queue.ms" ) ;
You can’t perform that action at this time.
0 commit comments