We use Application insights from Azure Functions, currently documenting outage scenarios for different Azure Components. What'll be the impact on Functions if Application Insights service goes down? I hope it doesn't impact Function executions and they continue to operate as normal.
Also when it comes back online, let's say half an hour after the outage, would all the logs done during that time will be lost?
What'll be the impact on Functions if Application Insights service goes down? I hope it doesn't impact Function executions and they continue to operate as normal.
It does not. Functions will continue to run as usual.Telemetry submitting is done in the background anyway.
Also when it comes back online, let's say half an hour after the outage, would all the logs done during that time will be lost?
It depends on what Channel is configured. The Application Insights .NET and .NET Core SDKs ship with two built-in channels:
When using the ServerTelemetryChannel
you may need to configure the location where telemetry will be stored during the downtime. See also the docs regarding offline storage