This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
ggate
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
2
Wiki
Activity
Browse Source
add a tool to see what requests have not completed, useful for debugging..
tags/ggatessh-v1.0.0
John-Mark Gurney
4 years ago
parent
dbf3c5c767
commit
ad55687781
1 changed files
with
16 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+16
-0
tools/trace.awk
+ 16
- 0
tools/trace.awk
View File
@@ -0,0 +1,16 @@
#!/usr/bin/awk -f
$0 ~ /^debug: ggio/ {
reqs[$8] = 1
print "started: " $8
}
$0 ~ /^debug: cmd complete/ {
delete reqs[$5]
}
END {
for (i in reqs) {
print "unfinished: " i
}
}
Write
Preview
Loading…
Cancel
Save