Azure Notification Hubs
An Azure service that is used to send push notifications to all major platforms from the cloud or on-premises environments.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have added diagnostic setting to notification hub ang directed logs to log analytic workspace but I am not receiving any logs
Hello Sankeerthana Desireddy Admin Account,
Thank you for submitting your question on Microsoft Q&A.
Use a Targeted Query to Find Your Logs
To quickly locate the logs you need, leverage a focused Kusto Query Language (KQL) query.
AzureDiagnostics
| where ResourceId contains "/namespaces/YOUR_NOTIFICATION_HUB_NAMESPACE_NAME"
| where Category == "OperationalLogs"
| project TimeGenerated, OperationName, ResultType, Resource
| sort by TimeGenerated desc
If your logs are stored in a resource-specific table, use this alternative query:
NHNamespaceLogs
| where TimeGenerated > ago(7d)
| where Category == "OperationalLogs"