You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed that AzureLogAnalytics target (in module version 4.3.2) produces an error when no Body property is provided: A hash table can only be added to another hash table.
Here's a simple repro script:
Import-Module Logging
Add-LoggingTarget-Name AzureLogAnalytics -Configuration @{
WorkspaceID='some-workspace-id';
SharedKey='some-Shared-Key';
LogType='MyCustomScript'
}
Write-Log-Level INFO -Message "This is a simple test informational message"Wait-Logging
The text was updated successfully, but these errors were encountered:
Hi,
I've noticed that
AzureLogAnalytics
target (in module version4.3.2
) produces an error when noBody
property is provided:A hash table can only be added to another hash table.
Here's a simple repro script:
The text was updated successfully, but these errors were encountered: