automation-suite
2023.4
false
Wichtig :
Bitte beachten Sie, dass dieser Inhalt teilweise mithilfe von maschineller Übersetzung lokalisiert wurde. Es kann 1–2 Wochen dauern, bis die Lokalisierung neu veröffentlichter Inhalte verfügbar ist.
UiPath logo, featuring letters U and I in white

Automation Suite unter Linux – Installationsanleitung

Letzte Aktualisierung 30. Mai 2025

Abfragen von Prüfungsprotokollen

Voraussetzungen

Bevor Sie Prüfungsprotokolle für Apps im Automation Suite-Setup herunterladen, müssen die folgenden Anforderungen erfüllt sein:

  • Sie müssen Zugriff auf die Maschine oder die virtuelle Maschine (VM) haben, auf der UiPath®-Dienste gehostet werden.

Gegebenenfalls müssen Sie auch Folgendes wissen:

  • Den Organisationsname, für den die Prüfungsprotokolle benötigt werden (<orgName>).
  • Die Benutzer-E-Mail, für die die Prüfungsprotokolle exportiert oder gelöscht werden sollen (<userEmail>).
  • Die Anzahl der Tage zwischen jetzt und dem Tag, für den Sie Prüfungsprotokolle abrufen oder löschen möchten (<numDays>).

Abrufen von Prüfungsprotokollabfragen

SELECT document FROM [UipathApps].[audit-logs] 
WHERE JSON_VALUE(document, '$.__tenantId') = '<orgName>' and 
JSON_VALUE(document, '$.userInfo.userEmail') = '<userEmail>' and 
CONVERT(datetime, JSON_VALUE(document, '$.createdAtDate')) <= (getdate() - <numDays>)SELECT document FROM [UipathApps].[audit-logs] 
WHERE JSON_VALUE(document, '$.__tenantId') = '<orgName>' and 
JSON_VALUE(document, '$.userInfo.userEmail') = '<userEmail>' and 
CONVERT(datetime, JSON_VALUE(document, '$.createdAtDate')) <= (getdate() - <numDays>)

Löschen von Prüfungsprotokollen

DELETE FROM [UipathApps].[audit-logs] 
WHERE JSON_VALUE(document, '$.__tenantId') = '<orgName>' and 
JSON_VALUE(document, '$.userInfo.userEmail') = '<userEmail>' and 
CONVERT(datetime, JSON_VALUE(document, '$.createdAtDate')) <= (getdate() - <numDays>)DELETE FROM [UipathApps].[audit-logs] 
WHERE JSON_VALUE(document, '$.__tenantId') = '<orgName>' and 
JSON_VALUE(document, '$.userInfo.userEmail') = '<userEmail>' and 
CONVERT(datetime, JSON_VALUE(document, '$.createdAtDate')) <= (getdate() - <numDays>)

War diese Seite hilfreich?

Hilfe erhalten
RPA lernen – Automatisierungskurse
UiPath Community-Forum
Uipath Logo White
Vertrauen und Sicherheit
© 2005–2025 UiPath. Alle Rechte vorbehalten