我已經安裝了快照調試程序包,並對applicationinsight.config進行了更改。但是當我看到異常時顯示Collect調試快照。打開調試快照鏈接不可見?
1
A
回答
1
我也面臨這個問題。緊接着這個鏈接安裝https://docs.microsoft.com/en-us/azure/application-insights/app-insights-snapshot-debugger。但在Azure門戶中,未顯示「打開調試快照」。只顯示「收集快照」,並點擊此鏈接重定向到上面提到的網址。
1
管理通過以下步驟來得到這個工作:
- 安裝在您的網站SnapshotCollector NuGet包https://www.nuget.org/packages/Microsoft.ApplicationInsights.SnapshotCollector
- (IMP)(配置可以在這篇文章的末尾找到) - 發佈中調試模式,確保了PDB文件部署(您可以從「預覽」選項選中)
<Add Type="Microsoft.ApplicationInsights.SnapshotCollector.SnapshotCollectorTelemetryProcessor, Microsoft.ApplicationInsights.SnapshotCollector">
<!-- The default is true, but you can disable Snapshot Debugging by setting it to false -->
<IsEnabled>true</IsEnabled>
<!-- Snapshot Debugging is usually disabled in developer mode, but you can enable it by setting this to true. -->
<!-- DeveloperMode is a property on the active TelemetryChannel. -->
<IsEnabledInDeveloperMode>true</IsEnabledInDeveloperMode>
<!-- How many times we need to see an exception before we ask for snapshots. -->
<ThresholdForSnapshotting>1</ThresholdForSnapshotting>
<!-- The maximum number of snapshots we collect for a single problem. -->
<MaximumSnapshotsRequired>3</MaximumSnapshotsRequired>
<!-- The maximum number of problems that we can be tracking at any time. -->
<MaximumCollectionPlanSize>50</MaximumCollectionPlanSize>
<!-- How often to reset problem counters. -->
<ProblemCounterResetInterval>24:00:00</ProblemCounterResetInterval>
<!-- The maximum number of snapshots allowed per day. -->
<SnapshotsPerDayLimit>30</SnapshotsPerDayLimit>
<!--Whether or not to collect snapshot in low IO priority thread.-->
<SnapshotInLowPriorityThread>true</SnapshotInLowPriorityThread>
</Add>
相關問題
- 1. 打開鏈接與可可
- 2. UIImagePickerController照片快門不打開
- 3. 鏈接到V8快照
- 4. sIFR鏈接不可見
- 5. wp7超鏈接不可見
- 6. 調試對象快照
- 7. 如何在照片打開後在照片上放置鏈接?
- 8. PDF鏈接不能打開
- 9. 鏈接不打開Safari
- 10. UIWebView的不打開鏈接
- 11. 打開鏈接
- 12. 打開鏈接
- 13. 打開鏈接
- 14. 問題試圖打開定製鏈接
- 15. 試圖打開與Safari的UIWebView鏈接
- 16. 鏈接socket.io ID與快遞和護照
- 17. 是cassandra快照的副本或鏈接?
- 18. Javascript打開鏈接
- 19. 可見ActionBar與打開NavDrawer
- 20. PowerShell打開Outlook,使可見
- 21. ActiveAdmin註銷鏈接不可見
- 22. 第四個鏈接不可見
- 23. 爲主題的鏈接不可見
- 24. 使div不可見,並點擊鏈接後,使其可見
- 25. 快照文物在MVN後日食不可見安裝
- 26. 用jquery打開的鏈接打開鏈接
- 27. 當鏈接打開打開活動
- 28. Visual Studio調試菜單不可見
- 29. Winform在調試時不可見
- 30. 調試選項是不可見的
我們需要更多關於您究竟在做什麼以及您期望如何幫助您的信息。 –
當我點擊應用程序見解中的失敗選項卡中的異常。我正在收集調試快照鏈接而不是打開調試快照鏈接。 –