Top  | Previous | Next

system.util.queryAuditLog

Description

Queries an audit profile for audit history. Returns the results as a dataset.

 

information2 This function accepts keyword-style invocation. See also: Functions / Keyword Invocation

Syntax

system.util.queryAuditLog(auditProfileName, startDate, endDate, actorFilter, actionFilter, targetFilter, valueFilter, systemFilter, contextFilter)

Parameters

String auditProfileName - The name of the audit profile to pull the history from.

Date startDate - The earliest audit event to return. If omitted, the current time - 8 hours will be used.

Date endDate - The latest audit event to return. If omitted, the current time will be used.

String actorFilter - A filter string used to restrict the results by actor.

String actionFilter - A filter string used to restrict the results by action.

String targetFilter - A filter string used to restrict the results by target.

String valueFilter - A filter string used to restrict the results by value.

String systemFilter - A filter string used to restrict the results by system.

Integer contextFilter - A bitmask used to restrict the results by context. 0x01 = Gateway, 0x02 = Designer, 0x04 = Client.

Returns

Dataset - A dataset with the audit events from the specified profile that match the filter arguments.

Scope

Client