Skip to content

Commit

Permalink
add missing dot for other.unknownhost prefix.
Browse files Browse the repository at this point in the history
  • Loading branch information
oli99sc committed Aug 13, 2012
1 parent f147a94 commit e5b2ee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function measureForKey (key, fields){
if (!(fields[3] === undefined)) {
finalKey = fields[3] + "." + key ;
} else {
finalKey = 'other.unknownHosts' + key ;
finalKey = 'other.unknownHosts.' + key ;
}
if (fields[2] && fields[2].match(/^@([\d\.]+)/)) {
sampleRate = Number(fields[2].match(/^@([\d\.]+)/)[1]);
Expand Down

0 comments on commit e5b2ee2

Please sign in to comment.