CHG-27575-19-300576
Adjustments are made in the global settings section of the Settings module, which allows the operations area to be notified and/or alerted when the tracking exceeds a number of messages per minute.
To do this, a task was implemented for AEMM multitenant that calculates with the number of devices and the current tracking configuration, the number of messages per minute, if it exceeds a limit, it sends an email to an email that is registered directly in the database within the settings table.
The calculation is made with the number of devices that have the tracking and with the number of messages that are being generated by the distance/current time configuration of the global configurations.
The values of the seed variables involved in the notification process are as follows:
MessagesByMinuteTracking: A seed parameter that contains the number of messages allowed per minute of tracking

Select * from AFW_SETTINGS where sett_key='MessagesByMinuteTracking'
EmailNotificationTracking: A parameter that sets the email to which each reported trace event will be notified.

Select * from AFW_SETTINGS where sett_key='EmailNotificationTracking'
AMDM_NotificationTrackingTask: A task that runs validation when the number of messages has been higher than the configured parameter.

Select top 100 * from afw_scheduler where sche_name='AMDM_NotificationTrackingTask'
For more details, please refer to the documentation for:Global Settings. |