UiPath Documentation
automation-suite
2023.4
false
Automation Suite unter Linux – Installationsanleitung
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.

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>)
  • Voraussetzungen
  • Abrufen von Prüfungsprotokollabfragen
  • Löschen von Prüfungsprotokollen

War diese Seite hilfreich?

Verbinden

Benötigen Sie Hilfe? Support

Möchten Sie lernen? UiPath Academy

Haben Sie Fragen? UiPath-Forum

Auf dem neuesten Stand bleiben