Eh! Troubleshooting this all morning to no avail.
Background:
- What: Azure Function
- Runtime: Python
- Trigger: EventGrid w/ Advanced Filters
- Advanced Filters (NOTE: Working just fine for last 30+ days):

- Subscribed to: Storage Account; blob upload only
- Auth: System-assigned Managed Identity (Function SAMI added as
BlobDataReaderrole to Storage Account)
Issue:
- Uploading .csv files to blob container does not trigger the Function
- AND various "ClientOtherError" and "AuthenticationError" messages are shown in "Request Breakdown" blade
Questions:
- What are these new errors?
- How do I create an App Insight alert that catches them?


ClientOtherErroris when Azure Synapse was trying to read a 20KB file "efficiently" by assuming it's 4MB and then issuing 8 parallel REST API calls to read 8 chunks of 0.5 MB each (0-0.5MB, 0.5-1MB, 1MB-1.5MB, ..., 3.5-4MB). All calls except first one failed with HTTP-416, which isClientOtherError. - KashyapDiagnostic settings (classic)->Loggingsection. It would give you an insight on all operations on your storage account. - Kashyap