Created
March 16, 2019 17:53
-
-
Save RobertAKARobin/43e251458a6f81795311b7adfaf5318b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs') | |
const rx = { | |
fail: /^Request timeout/i, | |
time: /^(\d\d:\d\d:\d\d\.?\d*)/i, | |
seq: /icmp_seq=(\d+)/i, | |
dur: /time=([\d\.]+) ms$/i | |
} | |
const log = [] | |
fs.readFileSync('./ping.txt', 'utf8').split('\n').forEach(line=>{ | |
const time = line.match(rx.time) | |
const seq = line.match(rx.seq) | |
const dur = line.match(rx.dur) | |
if(time && seq && dur){ | |
log.push([ | |
time[1], | |
seq[1], | |
dur[1] | |
].join(',')) | |
} | |
}) | |
console.log(log.join('\n')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment