diff --git a/powerbi-docs/transform-model/log-analytics/desktop-log-analytics-configure.md b/powerbi-docs/transform-model/log-analytics/desktop-log-analytics-configure.md index fd72d23d31..25e8b18813 100644 --- a/powerbi-docs/transform-model/log-analytics/desktop-log-analytics-configure.md +++ b/powerbi-docs/transform-model/log-analytics/desktop-log-analytics-configure.md @@ -127,7 +127,7 @@ The following table describes the **schema**. | Property | Existing Azure Analysis Services property | Description | | --- | --- | --- | | **TimeGenerated** | | The timestamp (UTC) of when the log was generated. | -| **OperationName** | EventClass_s | The operation associated with the log record. | +| **OperationName** | EventClass_s | The Analysis Services trace event associated with the log record. Refer to AS Trace Events [documentation](/analysis-services/trace-events/analysis-services-trace-events) page for more details about possible events for each category.| | **CorrelationId** | | The ID for correlated events. Can be used to identify correlated events between multiple tables. | | **PowerBIWorkspaceId** | | Unique identifier of the workspace containing the artifact being operated on. | | **PremiumCapacityId** | | Unique identifier of the Premium capacity hosting the artifact being operated on. | @@ -137,12 +137,12 @@ The following table describes the **schema**. | **ArtifactKind** | | Type of artifact logging the operation, for example, semantic model. | | **CpuTimeMs** | CPUTime_s | Amount of CPU time (in milliseconds) used by the event. | | **ArtifactName** | DatabaseName_s | The name of the Power BI artifact logging this operation. | -| **LogAnalyticsCategory** | Unique | Category of the events, like Audit/Security/Request. | +| **LogAnalyticsCategory** | Unique | The Analysis Services trace event category associated with the log record. Refer to AS Trace Events [documentation](/analysis-services/trace-events/analysis-services-trace-events) page for more details about possible event categories.| | **DatasetMode** | | The mode of the semantic model. Import, DirectQuery, or Composite. | | **DurationMs** | Duration_s | Amount of time (in milliseconds) taken by the operation. | | **User** | User_s | The user associated with the running operation. Used when an end-user identity must be impersonated on the server. | | **ExecutingUser** | EffectiveUsername_s | The user running the operation. | -| **OperationDetailName** | EventSubclass_s | More details about the operation. | +| **OperationDetailName** | EventSubclass_s | More detail about Analysis Services trace event associated with the log record. Refer to 'Subclass' property of the trace event documentation page for more details about possible values, for example [Command Begin](/analysis-services/trace-events/command-events-data-columns#bkmk_1). | | **XmlaObjectPath** | ObjectPath_s | Object path. A comma-separated list of parents, starting with the object's parent. | | **PowerBIWorkspaceName** | | Name of the Power BI workspace containing the artifact. | | **StatusCode** | Error_s | Status code of the operation. It covers success and failure. | @@ -269,6 +269,7 @@ The following table describes all the possible properties. Not every property is | timeEnd | The timestamp (UTC) of when the request ended. | | durationMs | Total duration of the execution. | | datasourceConnectionThrottleTimeMs | Total throttle time after hitting the datasource connection limit. Learn more about maximum concurrent connections [here](../../enterprise/service-premium-what-is.md#semantic-model-sku-limitation). | +| externalQueryExecutionTimeMs | Total time spent on executing all external datasource queries during the request. | | directQueryConnectionTimeMs | Total time spent on creating new DirectQuery connection during the request | | directQueryIterationTimeMs | Total time spent on iterating the results returned by the DirectQuery queries. | | directQueryTotalTimeMs | Total time spent on executing and reading all DirectQuery queries during the request. | @@ -290,10 +291,12 @@ The following table describes all the possible properties. Not every property is | errorCount | Total number of errors for the current request. | | qsoReplicaVersion | Replica version for QSO enabled semantic models, represented in [FILETIME](/windows/win32/api/minwinbase/ns-minwinbase-filetime) format. | | intendedUsage | Intended usage: Default (0); Scheduled or API refresh (1); On Demand Refresh (2); Dashboard tile/Query cache refresh (3) | +| commandType | Type of Analysis Services command requested by the client (e.g. Batch, Statement, Backup,...) | | discoverType | Type of Discover requested by the client. Refer to [EventSubclass](/analysis-services/trace-events/discover-events-data-columns#discover-begin-classdata-columns) for list of discover types. | | queryDialect | Type of Dialect client has used to query the server: Unknown (-1); MDX (0); DMX (1); SQL (2); DAX (3); JSON (4) | | capacityThrottlingMs | Total time the request got delayed due to capacity throttling. Learn more about throttling [here](/fabric/enterprise/throttling). | + - All durations and CPU times are presented in milliseconds. - Additional properties beyond those described in the table above may be encountered and these should be considered as undocumented and subject to change.