This message was deleted.
# general
s
This message was deleted.
r
My experience is that if I don't add that site extension, it doesn't capture the log messages from my custom code. It does capture some standard logging, but none of the log messages from my code. What is APM?
w
Application Performance Monitoring is essentially an agent that looks at the runtime and generates performance data for it. For custom code, as long as you're registering the application insights instance as
services.AddApplicationInsights()
etc. and you have the InstrumentationKey for Application Insights as an AppSetting, it should work fine.
r
OK. Thanks. I'll look more into that. I'm not sure about that instrumentation key.