Microsoft Teams

Dispatch alerts to Microsoft Teams (coming soon!)

Dispatch Anomify alerts to your Microsoft Teams channels.

Microsoft Teams is a collaboration and communication platform. It combines various tools and features such as instant messaging, voice and video conferencing, file and screen sharing, and integration with other Microsoft products such as OneNote and SharePoint. It's a centralized hub for team collaboration and communication that helps teams stay organized, connected, and productive. It can be used for a variety of purposes, including remote work, online meetings, and project management.

Available on

Developer, Scale Up plans

Category

Alert Channel

Monitoring is a team activity and increasingly teams rely on communication platforms to collaborate and perform monitoring. It's important for alerts to be sent to places where they will be seen. As such Anomify is creating a Microsoft Teams app for delivering Anomify alerts.

Users will be able to customise the alert template so it can be interpreted by members of your team. You will be able to train the systme and create patterns of expected behaviour without leaving the Microsoft Teams app.

Want to check that we're a good fit?

// EMAIL DOMAINS TO BLOCK var emailList = /@(mail\.ru)\s*$/ // ALERT MESSAGE TO BE SHOWN var emailAlert = 'Sorry, your email domain is not supported.' // VALIDATion $('input[type=submit]').click(function() { $("input[type=email]").each(function() { var email = $(this).val().toLowerCase(); if (emailList.test(email)) { (this).setCustomValidity(''); } else { (this).setCustomValidity(emailAlert); } }) }); // PREVENTS ALERT FROM APPEARING WITH EACH KEYPRESS $('input[type=email]').on('input', function() { (this).setCustomValidity(''); });