Megosztás a következőn keresztül:


A CIEventsOperational tábla lekérdezései

CIEventsOperational – ApiEvent eseménytípus

Lekéri az apiEvent eseménytípusú műveleti események listáját.

CIEventsOperational
| where EventType has "ApiEvent"
| sort by TimeGenerated desc
| limit 100 // You can adjust the limit value to the number of logs you would like to retrieve.

CIEventsOperational- event type WorkflowEvent

Lekéri a munkafolyamatEvent eseménytípusú műveleti események listáját.

CIEventsOperational
| where EventType has "WorkflowEvent"
| sort by TimeGenerated desc
| limit 100 // You can adjust the limit value to the number of logs you would like to retrieve.

CIEvents – egy adott korrelációs azonosító összes eseménye

Lekéri egy adott korrelációs azonosító összes eseménykérelmének listáját

union CIEventsAudit , CIEventsOperational
| where CorrelationId == "" // Add your CorrelationId in the quotation marks
| sort by TimeGenerated desc
| limit 100

CIEventsOperational – egy adott példányazonosító összes eseménye

Lekéri egy adott példányazonosító API-eseménykéréseinek listáját.

CIEventsOperational
| where InstanceId == "" // Add your InstanceId in the quotation marks
| sort by TimeGenerated desc
| limit 100