0

我有一个要求,我想将一些指标写入应用程序洞察力,以便定期监控服务。

我认为我会编写这个 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)"

谢谢西拉杰

4

2 回答 2

1

尝试以下路径的程序集“C:\Modules\Global\Azure\Compute\Microsoft.ApplicationInsights.dll”

于 2016-05-05T19:26:36.297 回答
0

问题在于加载 DLL 文件。Runbook 无法在此行中找到该文件:

$AI = "$PSScriptRoot\Microsoft.ApplicationInsights.dll"
[Reflection.Assembly]::LoadFile("$AI")

通过 Azure 自动化运行 Runbook 时,你无法像通常在本地计算机或本地一样访问本地路径。在 Azure 自动化中,模块放置在“ C:\Modules ”中。

相反,在您上传 dll 文件后,使用下面的代码片段:

[System.Reflection.Assembly]::LoadFrom("C:\Modules\Azure\Microsoft.ApplicationInsights.dll")

最接近的相关参考:引用 DLL

于 2016-05-05T20:55:44.533 回答