Breyta

Deila með


Enable streaming execution logs in Azure Functions

While developing an application, you often want to see what's being written to the logs in near real time when running in Azure.

There are two ways to view a stream of log files being generated by your function executions.

When your function app is connected to Application Insights, you can view log data and other metrics in near real-time in the Azure portal using Live Metrics Stream. Use this method when monitoring functions running on multiple-instances and supports all plan types. This method uses sampled data. This is the recommended way to view streaming logs.

Important

By default, the Live Metrics stream includes logs from all apps connected to a given Application Insights instance. When you have more than one app sending log data, you should filter your log stream data.

Log streams can be viewed both in the portal and in most local development environments. The way that you enable and view streaming logs depends on your log streaming method, either Live Metrics or built-in.

  1. To view the Live Metrics Stream for your app, select the Overview tab of your function app.

  2. When you have Application Insights enabled, you see an Application Insights link under Configured features. This link takes you to the Application Insights page for your app.

  3. In Application Insights, select Live Metrics Stream. Sampled log entries are displayed under Sample Telemetry.

View Live Metrics Stream in the portal

Next steps