mirror of
https://gitlab.com/manzerbredes/loosely-coupled-dss.git
synced 2025-04-19 04:09:43 +00:00
Improve data analysis
This commit is contained in:
parent
84d9ce59ae
commit
0a125c3661
32 changed files with 205278 additions and 38517 deletions
15
results/scheduler/hint_fw.awk
Executable file
15
results/scheduler/hint_fw.awk
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/awk -f
|
||||
|
||||
BEGIN {
|
||||
RS="\n"
|
||||
FS=" "
|
||||
CSV_HEADER="node,ts"
|
||||
CSV_DATA=""
|
||||
skip=1
|
||||
print(CSV_HEADER)
|
||||
}
|
||||
|
||||
/forward a hint successfully/ {
|
||||
gsub("]","",$0)
|
||||
print($4","$2)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue