Merge pull request #1222 from NETivism/issue-1201

Show some pure text body in notification when keyword not found
pull/1735/head^2
Louis Lam 2 years ago committed by GitHub
commit 11243a6ca1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -312,7 +312,11 @@ class Monitor extends BeanModel {
bean.msg += ", keyword is found";
bean.status = UP;
} else {
throw new Error(bean.msg + ", but keyword is not found");
data = data.replace(/<[^>]*>?|[\n\r]|\s+/gm, " ");
if (data.length > 50) {
data = data.substring(0, 47) + "...";
}
throw new Error(bean.msg + ", but keyword is not in [" + data + "]");
}
}

Loading…
Cancel
Save