Variable: ENTRY_TYPES
constENTRY_TYPES: readonly ["request","query","exception","log","cache","event","job","schedule","mail","http-client","redis","model","notification","view","command","gate","batch","dump","graphql"]
Defined in: types/entry.types.ts:14
Every kind of entry there is, at runtime.
Declared as a value rather than only as a union because code has to iterate
it: the Redis driver's getStats() counted from a hand-written list of
eighteen and EntryType had nineteen, so graphql entries were invisible to
the dashboard's headline figures — measured on a deployment as
{ total: 0, byType: {} } while the entries themselves were being recorded
and listed correctly. The memory and SQLite drivers count from the data and
could not drift; only the literal could.