[doc only] Mention the preinit_tasks_overflow metric (#727)

...where we talk about overflowing the task queue
This commit is contained in:
Michael Droettboom 2020-02-20 03:56:46 +05:30 коммит произвёл GitHub
Родитель bbf9bc7ab4
Коммит 6c07a1d468
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -150,7 +150,9 @@ See the [custom pings documentation](pings/custom.md) about adding custom pings
## Behavior when uninitialized
Metric recording that happens before Glean is initialized is queued and applied when Glean is initialized.
To avoid unbounded memory growth the queue is bounded (currently to a maximum of 100 tasks). Further recordings are dropped.
To avoid unbounded memory growth the queue is bounded (currently to a maximum of 100 tasks).
Further recordings are dropped.
The number of recordings dropped, if any, is recorded in the `glean.error.preinit_tasks_overflow` metric.
Custom ping submission will not fail before initialization.
Collection and upload of the custom ping is delayed until Glean is initialized.