Skip to content

Instantly share code, notes, and snippets.

@VikramVasudevan
Created December 26, 2019 05:15
Show Gist options
  • Save VikramVasudevan/1113cdb08b48913d465cf52c02fc36f9 to your computer and use it in GitHub Desktop.
Save VikramVasudevan/1113cdb08b48913d465cf52c02fc36f9 to your computer and use it in GitHub Desktop.
BEGIN {
print "<OL>";
}
{
split($0,a,"--");
split(a[2],responseTimeArray,"/");
if(responseTimeArray[2] > 4000000)
print "<li>",$0, a[2],":",responseTimeArray[2],"</li>";
}
END{
print "</OL>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment