Monday, May 23, 2016

[WSO2 Governance Registry] - How to analyse the history of registry resources

Assume that you are working on a setup where you need to analyse the history of registry resources. One might want to know what type of operations have been done to the resource throughout it’s lifetime. This is possible from a simple DB query.

select * from REG_LOG where REG_PATH=‘resource_name’;

i.e. select * from REG_LOG where REG_PATH='/_system/governance/apimgt/statistics/ga-config.xml';


As an example, assume I want to find out the actions taken on the resource ga-config.xml. So when I query the table REG_LOG, below is the result I would receive.




When you look at the above result set, you would notice that the column REG_ACTION shows different values in each row. The actions that represents these values are configured in the class Activity.java. For example, REG_ACTION=10 means that the resource have been moved from it’s current location. REG_ACTION=7 means that it has been deleted from the system. Likewise, when you go through [1], you can find out the rest of the actions which you can take on these registry resources.

Therefore as explained above, by going through the REG_LOG of the registry database table, you can audit the actions taken on each and every resource.

[1] - https://github.com/wso2/carbon-kernel/blob/4.4.x/core/org.wso2.carbon.registry.api/src/main/java/org/wso2/carbon/registry/api/Activity.java

2 comments:

ramesh said...

Hi Team,
I have a clarification., I have installed WSO2Governance registry and imported my services into it(1 to 2 services for testing).if suppose tomorrow my server got some problem and I could able to login to https://10.47.65.71:9443/carbon url.,how about my resources upload ?how I am going to bring back them?

Evanthika said...

Hi Ramesh,

I did not quite understand your question. Could you clarify it a bit more? Do you mean to ask what happens to the services if your server comes across and issue and you cannot login to the Governance Registry instance? I'm afraid, if that happens, you will not be able to access the services as they will be stored in the database once uploaded. Like it WSO2 ESB, they will not be saved in the file system.
It would be grate if you can be more clear on your question so that I could provide a more clear answer.

Regards,
Evanthika