Documentation for a newer release is available. View Latest
Esta página no está disponible actualmente en Español. Si lo necesita, póngase en contacto con el servicio de asistencia de Icon (correo electrónico)

App Audit

The app audit service saves an audit record by sending a http post request to './api/audit'. The service is used to create an audit record as can be seen in the example below.

Example usage:

private createAuditRecord(url: string) {
        const record: AppAuditRecord = {
            action: 'FORBIDDEN_ACCESS',
            request: {
                url: url
            }
        };
        this.appAuditService.saveAuditRecord(record).subscribe((result: any) => console.debug(result));
    }