サービスを定期的に監視するために、いくつかのメトリックをアプリケーション インサイトに書き込みたいという要件があります。
私は、この PowerShell スクリプトを作成し、それに応じてスケジュールすることを考えました。
Write-Output "Script Start"
$PSScriptRoot = Get-Location
$AI = "$PSScriptRoot\Microsoft.ApplicationInsights.dll"
[Reflection.Assembly]::LoadFile("$AI")
$InstrumentationKey = ""
$TelClient = New-Object "Microsoft.ApplicationInsights.TelemetryClient"
$TelClient.InstrumentationKey = $InstrumentationKey
$TrackMetric = New-Object "Microsoft.ApplicationInsights.DataContracts.MetricTelemetry"
$TrackMetric.Name = "PowershellTest"
$TrackMetric.Value = Get-Random -Minimum:1 -Maximum:100
$TelClient.TrackMetric($TrackMetric)
$TelClient.Flush()
Write-Output "Script End $TrackMetric.Value"
この PowerShell スクリプトは機能しますが、そのスクリプトを Runbook に移動した後、機能しなくなりました。
では、本題です。Runbook 内に ApplicationInsight DLL を読み込むことができません。
それを行う方法はありますか?
例外の詳細
Exception calling "LoadFile" with "1" argument(s): "The system cannot find the file specified. (Exception from HRESULT:
0x80070002)"
ありがとうシラジ