Authored by htoooth

fix

@@ -19,7 +19,7 @@ const server = { @@ -19,7 +19,7 @@ const server = {
19 if (m.measurement === 'web-server-duration') { 19 if (m.measurement === 'web-server-duration') {
20 let duration = parseInt(m.fields.duration); 20 let duration = parseInt(m.fields.duration);
21 21
22 - if (duration > config.slowRoute.min && duration < config.slowRoute.max) { 22 + if (duration > config.slowRoute.min / 10 && duration < config.slowRoute.max) {
23 slowRouterSqlSender.addMessage(msg2row.slowRouter(m)); 23 slowRouterSqlSender.addMessage(msg2row.slowRouter(m));
24 } 24 }
25 25