- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-17-2024 03:01 AM
How to report on number of times the MID server faced issues like going down on invalidated ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-17-2024 06:39 AM
Write a Before Business Rule (insert/Amend) to run on table: ecc_agent
In the Conditions check for status = Down, as below:
In the Advanced section script, generate an event (using gs.eventQueue) that a Notification fires on and tells you the second a MID goes into the Down state. For example call the event middown and also remember to make an entry in the Event Registry for the new event.
If you purely want to report on that then write a report on ecc_agent looking for status = down
Regards
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-17-2024 06:39 AM
Write a Before Business Rule (insert/Amend) to run on table: ecc_agent
In the Conditions check for status = Down, as below:
In the Advanced section script, generate an event (using gs.eventQueue) that a Notification fires on and tells you the second a MID goes into the Down state. For example call the event middown and also remember to make an entry in the Event Registry for the new event.
If you purely want to report on that then write a report on ecc_agent looking for status = down
Regards
Paul