Skip to content

Instantly share code, notes, and snippets.

@GrimRob
GrimRob / ExceptionLoggingMiddleware.cs
Last active February 24, 2025 18:55
Azure ExceptionLoggingMiddleware. App Insights is cumbersome and expensive. This middleware just logs exceptions to an Azure storage table.
using Azure.Data.Tables;
using Azure.Storage.Blobs;
using Azure.Storage.Blobs.Models;
using Microsoft.Azure.Functions.Worker;
using Microsoft.Azure.Functions.Worker.Middleware;
using Microsoft.Extensions.Logging;
using System.Reflection;
public class ExceptionLoggingMiddleware : IFunctionsWorkerMiddleware
{