Replies: 1 comment 1 reply
-
@stijnmoreels Can you list all the providers that are added by Azure Functions please? As far as I know, I think we cannot avoid this and the only way to mitigate this is use a different name for your key, but let's verify! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I use Arcus.Observability in an Azure Function.
I typically have a configuration-setting in my Azure Function which is named
APPINSIGHTS_INSTRUMENTATIONKEY
to integrate my Azure Function with App Insights. This gives me built-in logging of my Function's usage to appinsights.However, when I log custom metrics and dependencies, those metrics and dependencies are written twice to Application Insights: once as a metric (or a dependency) which is as expected, but they're also written as a 'trace' with a warning level:
Could it have something to do with this ?
I can offcourse change the name of the
APPINSIGHTS_INSTRUMENTATIONKEY
setting, but then I loose some functionality (like logs and metrics from the function host, so I rather don't do that.Beta Was this translation helpful? Give feedback.
All reactions