Martin Stevnhoved Posted July 14, 2016 Posted July 14, 2016 Hi MMSOFT. Is it somehow possible to generate more individual notifications from the same plugin, without using allowMultipleNotifications. It is not hard to imagine that a plugin would have to monitor two or more individual values. If it is not possible, consider this a feature request :-) Best Regards, Martin.
Administrators Paul Posted July 14, 2016 Administrators Posted July 14, 2016 Hi Martin, This isn't supported yet but it's a great idea! We will consider it for the future. -Paul
Dilbert Posted July 22, 2016 Posted July 22, 2016 Hi, perhaps you should introduce something like a "Notification ID" to detect wether the notification has been shown before or not. Dilbert
Martin Stevnhoved Posted November 11, 2016 Author Posted November 11, 2016 This is indeed the limitation I most run into when developing plugins.
Administrators Paul Posted November 11, 2016 Administrators Posted November 11, 2016 Hi Martin, We will be adding an optional string argument which allows you to specify a unique ID to the notification. -Paul
Martin Stevnhoved Posted November 26, 2016 Author Posted November 26, 2016 Hi Paul, Do you have some timeframe for this new addition? Just to know if I should wait with my plugin ideas, or revrite them late.
Administrators Paul Posted September 26, 2017 Administrators Posted September 26, 2017 Hi Martin, This got released in yesterday's Windows Agent 5.3 release. Documentation is yet to be updated but you should find a new overload for the SendNotificationToAllDevices method with the new PCMonitorClient.dll. -Paul
Martin Stevnhoved Posted November 29, 2018 Author Posted November 29, 2018 (edited) Hi Paul. Can you help me to find the documentation for different notifications? Quote https://www.pulseway.com/en/api/clientnet?tutorialSubItem=interfacevoid SendNotificationToAllDevices(string message, NotificationPriority priority, bool allowMultipleNotifications = false)"After one notification is sent you can send another one only after the first one is deleted using a client application, unless allowMultipleNotifications is true." I need the default option (without allowMultipleNotifications) to work with different notifications. I guess it should be possible to add som kind of notification_id. Edited November 30, 2018 by Martin Stevnhoved
Martin Stevnhoved Posted November 30, 2018 Author Posted November 30, 2018 Hi Paul. I found it myself: void SendNotificationToAllDevices(string message, NotificationPriority priority, bool allowMultipleNotifications, string notificationIdentifier) Are there any more hidden gems, not mentioned in the docs? Paul 1
Martin Stevnhoved Posted December 4, 2018 Author Posted December 4, 2018 Hi again @Paul. How does CanSendNotifications work together with notificationIdentifier?
Administrators Paul Posted December 15, 2018 Administrators Posted December 15, 2018 There is an overload that includes the notificationIdentifier. If the notificationIdentifier it's passed it will tell you if you can send another notification with that non-repeating notification identifier: -Paul
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now