Help in avoiding hitting the new storage limit #2436
-
After upgrading to 2025.1 I was blocked from viewing events because I was way over the new storage limit for the indivual license. I have a few questions about how to avoid such issues in the future (btw, we're planning to upgrade to the also limited Team license in the near future).
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @dgoldm, On Data > Storage, indexes themselves aren't included, but the other four categories (indexed bytes, unindexed bytes, queued for reindexing, and buffered bytes) are. To set an alert, go to Settings > General, and set a system notification target app instance. An alert is generated within 10% or so of the limit. There's no completely accurate way to measure space for a subset of events, but using Hope this helps, |
Beta Was this translation helpful? Give feedback.
Hi @dgoldm,
On Data > Storage, indexes themselves aren't included, but the other four categories (indexed bytes, unindexed bytes, queued for reindexing, and buffered bytes) are.
To set an alert, go to Settings > General, and set a system notification target app instance. An alert is generated within 10% or so of the limit.
There's no completely accurate way to measure space for a subset of events, but using
sum(Length(ToJson(@Data)))
over them is a reasonable (but slow) approximation.Hope this helps,
Nick