I'm wondering if Notificationhubs has a log for all the push notifications it has sent because I couldn't find anything resemble to that on Azure portal.
Asked
Active
Viewed 224 times
1 Answers
1
As far as i know, there is no such out-of-the-box one window where you may access these logs. But there is the per message telemetry that was introduced for Notification Hubs some time ago. Here is the article about that and basically you need to ask REST API for that.
So you may try to use Fiddler+https://msdn.microsoft.com/en-us/library/azure/mt608135.aspx or implement such functionality in your solution.

Alex Belotserkovskiy
- 4,012
- 1
- 13
- 10
-
How do you get notification message id though? – KMC Jun 10 '16 at 14:19
-
It should be available once you sent the notification. http://stackoverflow.com/questions/36557991/azure-notification-hub-why-is-notificationoutcome-notificationid-property-empty may be helpful. – Alex Belotserkovskiy Jun 10 '16 at 14:28
-
Note that in order to get per-message telemetry, your Notification Hub Namespace must be in the Standard pricing tier. – lehn0058 Jul 14 '17 at 14:30