In case the application wants to define more than 65535 events, it will end up with following message (web UI): ``` Undefined event type The file tried to reference an event it didn't define. Perhaps it's corrupted? tracing-framework github, issues ``` I think this might be caused by the fact the [wireId variable is 16-bit](https://github.com/google/tracing-framework/blob/e08860e96e7c4cfc79ccd2eea9c14b72a495a001/bindings/cpp/event.cc#L169) (and possibly [here](https://github.com/google/tracing-framework/blob/e08860e96e7c4cfc79ccd2eea9c14b72a495a001/src/wtf/db/sources/chunkeddatasource.js#L236))
In case the application wants to define more than 65535 events, it will end up with following message (web UI):
I think this might be caused by the fact the wireId variable is 16-bit
(and possibly here)