An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
Hello Hans-Ole Larsen, the alert is telling you that somewhere you’re still calling the Logs Query API’s “beta” endpoints, which have to be switched over to the GA (v1) path by 31 March 2026. Unfortunately there’s no “magic” portal page that lists “beta” calls for you—you have to hunt them down in your code or in your workspace’s diagnostic logs. Here’s how you can review your usage:
- Search your code/repositories, scripts and ARM templates for any of these patterns: •
https://api.loganalytics.azure.com/beta/...•https://api.loganalytics.io/beta/...•https://management.azure.com/.../api/query?api-version=2017-01-01-preview(preview = beta) If you find any, change them to use the v1 path or a stable API-version. - Enable and collect Log Analytics diagnostic logs (Category: “Query”) for your workspace:
- In the Azure portal go to your Log Analytics workspace → Diagnostic settings → Add
- Send the logs to the same or another Log Analytics workspace
- In that workspace, run a quick Kusto query to spot any beta‐endpoint usage: AzureDiagnostics | where Category == "Query" | where url_s contains "/beta/" If you see rows returned, that gives you the timestamp, client IP, user agent or calling application—use that to track down who’s issuing the beta call.
- Update any libraries or tools (SDKs, PowerShell modules, ARM templates, Logic Apps, API Management policies, custom apps, etc.) so they point to the v1 endpoints.
- Re-run the Kusto query above to confirm all “/beta/” calls have disappeared.
Hope that helps you pinpoint where the beta API is still in use!
Reference documentation
– Migrate from Logs Query API batch operation and beta version