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