APIPythonOpen-Source Solutions

  • 1.  How many days (or # of) audits retained in Delphix GUI?

    Posted 08-14-2014 04:01:00 PM
    Would like to know how many days of audits is retained in Delphix GUI.
    In addition dd we have any scripts to query only particular type.


  • 2.  RE: How many days (or # of) audits retained in Delphix GUI?

    Posted 08-14-2014 05:01:00 PM
    Audit logs are kept indefinitely, as for the scripts let me touch base with a few people.
    thanks!Jackie


  • 3.  RE: How many days (or # of) audits retained in Delphix GUI?
    Best Answer

    Posted 08-14-2014 05:16:00 PM

    The api allows you to query for audit events. There are many query parameters including fromDate, parentAction, rootActionOnly, state, toDate, user. Unfortunately there's no param to query by a particular type. You can however retrieve all the events (make sure to use pageSize=0 to set unlimited size) and filter by type in your script.

    Edit: Unbounded query might have an impact on performance, so we'd recommend at least using date boundaries.



  • 4.  RE: How many days (or # of) audits retained in Delphix GUI?

    Posted 08-16-2014 06:00:00 PM
    Thanks Jaclyn and Kenneth.

    Can you name the API? I looked at the delphix docs site and couldn't see the API relate to Audit.

    Thanks, Ranga.



  • 5.  RE: How many days (or # of) audits retained in Delphix GUI?

    Posted 08-17-2014 01:52:00 AM
    Hi Ranga,

    Audit events are actually called Action in the api.
    You can see the details in http://<your delphix engine>/api/#action

    Thanks,
    Kenneth