Hello Alexandre Silva,
Thank you for posting your question in the Microsoft Q&A forum.
The "Daily Quota Exceeded" error in Azure Application Insights, despite being below the configured 100GB/day limit, typically indicates an ingestion throttling issue rather than a true quota breach. This can occur if:
- Sampling is misconfigured - Application Insights may enforce adaptive sampling, dropping logs even if the total volume is low.
- A burst of telemetry triggered rate limiting - Azure enforces short-term ingestion caps to prevent spikes.
- The instrumentation key (IK) is shared across multiple apps, causing cumulative throttling.
- Logs contain excessively large payloads, hitting size-based limits before volume-based ones.
To resolve this, disable adaptive sampling in your OpenTelemetry config, verify no IK reuse exists, and check per-second ingestion limits in Azure Monitor. If throttling persists, switch to a Workspace-based Application Insights model, which offers more flexible quotas.
If the above answer helped, please do not forget to "Accept Answer" as this may help other community members to refer the info if facing a similar issue. Your contribution to the Microsoft Q&A community is highly appreciated.