Conventions
Code words in the text, database names, folder names, filenames, and file extensions are shown as follows: "In this code, we are using a let
statement for the Event
called WVDConnections
, and filtering tables for rows that match the users with connected
state."
Here's a sample block of code:
let Events = WVDConnections | where UserName == "userupn"; Events | where State == "Connected" | project CorrelationId, UserName, ResourceAlias, StartTime=TimeGenerated | join (Events | where State == "Completed" | project EndTime=TimeGenerated, CorrelationId) on CorrelationId | project Duration = EndTime - StartTime, ResourceAlias | sort by Duration asc
New terms and important words are shown in bold. For example, "Edge computing combines the power of the cloud with Internet of Things (IoT) devices."