cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Need help navigating or using the PTC Community? Contact the community team. X

update purpose

AP_9587236
17-Peridot

update purpose

In thingworx 8.5, do we have any option to check what are the entities are created, edited, deleted on daily basis? 

1 ACCEPTED SOLUTION

Accepted Solutions

You can have a daily Scheduler running which can extract Configuration log entries and you can filter out what you need from there. Configuration log captures information related to what all entities are created, edited, deleted, updated etc. You can use a snippet on scheduler subscription - QueryLogEntries on configuration log. One more way which might be more complex is, almost every entity holds a service called GetConfigurationChangeHistory. Which basically gives the changes made to that entity. To use this option you might have to loop through different types of entities and get the change history.

 

View solution in original post

2 REPLIES 2

You can have a daily Scheduler running which can extract Configuration log entries and you can filter out what you need from there. Configuration log captures information related to what all entities are created, edited, deleted, updated etc. You can use a snippet on scheduler subscription - QueryLogEntries on configuration log. One more way which might be more complex is, almost every entity holds a service called GetConfigurationChangeHistory. Which basically gives the changes made to that entity. To use this option you might have to loop through different types of entities and get the change history.

 

Ill try the your first suggestion. In your second suggestion it will be better if you explained clearly about how to loop through different types of entities to get the change history.!

Top Tags