


Is there a way to generate and/or export a list/log of all OSGi configuration changes made within a certain timeframe. If not is this information tracked in the JCR Repository in some state that we would be able to run a query on to try and identify the information?
We're currently running AEM 6.5.5.0.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Sign in to like this content
Total Likes
Hi @Thomas-1977,
Event with a topic - org/apache/felix/webconsole/plugins/event/internal/converter/ConfigurationEventConverter/CM_UPDATED is fired when we update an OSGI config.
Perhaps you can write an EventHandler to listen to this topic and write desired action in handleEvent method. (For your use case, log about the event)
You can try the below in your local instance
Hi @Thomas-1977,
Event with a topic - org/apache/felix/webconsole/plugins/event/internal/converter/ConfigurationEventConverter/CM_UPDATED is fired when we update an OSGI config.
Perhaps you can write an EventHandler to listen to this topic and write desired action in handleEvent method. (For your use case, log about the event)
You can try the below in your local instance