How to track progress Adobe Commerce Events I/O?
Hi all, please help me 🙂
1) I created an event as in the documentation:
bin/magento events:info plugin.magento.catalog.api.category_repository.save
bin/magento events:subscribe observer.catalog_category_save_after --fields=entity_id --fields=parent_id
cat app/etc/config.php
...
'io_events' => [
'observer.catalog_category_save_after' => [
'fields' => [
'entity_id',
'parent_id'
],
'enabled' => 1
]
]
...
2) Next, according to the documentation, I connected the event

3) In the event_data table I see that status = 1, which means that the event has been sent
4) In system.log
report.INFO: Event data batch of 1 events was successfully published. [] []5) xDebug receives a response that the event was sent successfully.

6) But it doesn't come to my microservice and I can't get it in the Event Browser tab.


Questions:
1) Why the event does not come to the developer console ?
2) Why the event does not arrive in the microservice ?
3) How can I find an event after it was sent from Adobe Commerce?
Eugene,
Kapelko