Authored by htoooth

fix

... ... @@ -34,6 +34,10 @@ function parseMessage(line) {
tags.route = 'null';
}
if (tags.url) {
tags.url = decodeURIComponent(tags.url);
}
return new Message(measurement, tags, fields, time);
}
... ...
... ... @@ -33,7 +33,7 @@ function errorRouter(m) {
uid: _.parseInt(uid),
udid: _.get(m, 'fields.udid', '').replace(/"/g, ''),
route: _.get(m, 'tags.path', ''),
url: _.get(m, 'tags.route', ''),
url: _.get(m, 'tags.url', ''),
code: _.parseInt(_.get(m, 'tags.code', '0')),
line: _.parseInt(line),
column: _.parseInt(column),
... ...