Include audit log for step templates?

Wondering if it’s possible to add audit log for step templates? As it is now, I have no idea who has changed what (especially annoying if someone are changing step templates which have core functionality).

Hi Harald,

Step template changes are currently in the audit log. The events look like “ActionTemplate was modified”. You can filter the audit view by “Document Created”, “Document Modified” and Document Deleted" to help find these events. In our next release or two we are adding additional filtering which will allow you to filter just by document type (such as ActionTemplate). We are also adding the ability to export the filtered log to csv.

In the mean time you could query the Octopus database directly with a query like:

select * from dbo.[event]
where RelatedDocumentIds like '%actiontemplates%'
order by occurred desc

Regards,
Mark

Yeah. Hopefully the feature will be implemented soon.
The list of changes with the event type “Document Modified” is quite long in our case, so any change on a step template will be hard to find.