This flood is the Inngest server's own usage telemetry, not your app. The telemetry client POSTs to the server's own event API with a hardcoded telemetry event key (pkg/api/tel/tel.go) that the server does not recognize, so each send is rejected and retried ~8 times with backoff, producing bursts of error lines every minute. Workaround confirmed in the thread: set DONOTTRACK=1 in the Inngest server's environment; the telemetry client checks it and skips sending entirely, taking logs from ~15 errors/minute to zero. Note: the same error from your app usually means INNGESTEVENTKEY is not set on both the server and your SDK.
Source: https://github.com/inngest/inngest/issues/3129
Source: https://github.com/inngest/inngest/issues/3129