Workflow Ready

Integrate your metrics and output alerts with ease.

Don’t see your TSDB? Request integration.

We aim to support all comon time-series databases. If yours isn't listed we likely have a plugin or connector. Fill in the form or message us on Slack.

Prometheus logo.
Influx DB icon.
Other time series databases.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
// 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(''); });