Exploring Octopus audit trail

Octopus has complete audit trail for each and every activities.

But it will be time consuming to find out the changes that happened to a variable or a single process.

Is there any easy way using PopwerShell or REST APIs or any other method how we can easily make use of Octopus audit trail.

Hi @ashubhatte

You can use our REST API to query the audit log, and drill down for specific changes! You will want to query the Events endpoint. For example, if you wanted to find all of the times variables have been modified in the past 90 days, you could use a request like:

YOUR_OCTOPUS_SERVER/api/events?eventCategories=Modified&from=2019-04-18T00%3A00%3A00-04%3A00&to=2019-07-18T00%3A00%3A00-04%3A00&documentTypes=variableset&spaces=Spaces-1&includeSystem=false

Octopus is an “API-first” application, meaning that anything you can do in the web UI, you can do with API calls. We ship Octopus with a SwaggerUI, accessible at YOUR_OCTOPUS_SERVER/swaggerUI which lists and documents all of the endpoints, as well as allows you to run test calls against your instance.

I hope this helps!

Yes Thank you very much. I will get back to you if I have any questions regarding this.

Hi Justin,
How you were able to frame the above API query can you please elobrate.

Hi @ashubhatte

Being API-first, as I mentioned in the first response, means that you can easily monitor the Octopus UI and see which API calls it is making. One of the best ways I’ve found of modelling an API call is to run it in the audit log within the Octopus web UI with the network pane of the developer tools open, and looking at the call being made. From there, you can use that as a reference/base for you own calls.

Thank you Justin,
I am able to browse the API which you have give directly through browser but from powershell script I am getting following 401 Unauthorized error.

Hi @ashubhatte!

You will generally see this due to a couple of common scenarios:

  1. Using the ApiKey parameter in your query, instead of using the X-Octopus-ApiKey header value.
  2. Doing the REST call with an API key that may not have access to view the event endpoint.

If you would like some sample powershell scripts, please feel free to take a look at our Octopus API repo here: https://github.com/OctopusDeploy/OctopusDeploy-Api/tree/master/REST/PowerShell

Hi Justin,
I have rescently made changes in the variable set to test if the above Rest-API is it works properly. I am not able to find the changes done by me.

Hi @ashubhatte!

When did you make the changes? The timestamp on that query is only until midnight, so if it’s been since then, you’ll want to adjust your to= timestamp to be current time or day+1 to include the current day’s events.

I hope this helps!

Thank you Justin it works with giving current day +1

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.