Execute a report after insert a entity

How can execute a report after insert a entity ?.
Thank in advance.

Use ReportRunner in EntityChangedEvent listener for after commit phase.
But this can cause performance issues. Report generation can take a long time.
In this case, you will have to create a processing queue, write data to it after the entity is committed, and process this queue later.