You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cube stores meta events rather than generating plaintext logs.
cube_request
Any requests sent to evaluators and collectors are logged as "cube_request" events. For example, when a client connects to the metric/get WebSocket endpoint:
Any metric computation requests sent to evaluators are logged as "cube_compute" events. The ms property records the number of milliseconds it took to compute the metric, which is useful for monitoring how well Cube is performing.
If a compound metric is evaluated (such as sum(foo) + sum(bar)), the subexpressions are computed in parallel as unary metrics (sum(foo) and sum(bar)), and thus generates multiple compute events.