以下AWK
代码从日志文件中提取Java线程转储:
# First thread dump line
/^Full thread dump Java/ {
thread_dump=1;
counter++;
printf "Thread dump #%d\n", counter
}
# Last thread dump text block
/^Heap[:space:]*$/ {
thread_dump=2;
}
# Last thread dump line
{ if (thread_dump==2 && $0 ~ "^[:space:]*$") {
thread_dump=0;
printf "End of Thread dump #%d\n\n", counter;
}
}
# Print line only if in thread dump block
{ if (thread_dump!=0) {print $0 } }
awk -f extract.awk log.out
的结果如下:
Thread dump #1
Full thread dump Java HotSpot(TM) 64-Bit Server VM (20.12-b01 mixed mode):
...
End of Thread dump #1
Thread dump #2
Full thread dump Java HotSpot(TM) 64-Bit Server VM (20.12-b01 mixed mode):
...
End of Thread dump #2
我想将每个线程转储写入一个单独的文件。文件名应包含一些数据,如日期和连续ID,如thread_dump_002_2013_01_23_14_15
。
如何将print
命令重定向到格式化文件名?
更新
以下作品:
print $0 >"some_file_name.txt"
但是,以下内容:
print $0 > counter".txt"
返回以下错误:
awk: syntax error at source line 25 source file extract.awk
context is
{ if (thread_dump!=0) { print $0 >>> >counter".txt" <<< } }
awk: illegal statement at source line 26 source file extract.awk
PS:我在Mac上使用AWK。
答案 0 :(得分:1)
只需尝试将>counter".txt"
添加到您的打印语句中即可。
例如:
printf "Thread dump #%d\n", counter >counter".txt";
如上所述,每个print语句都应附加此字符串。 然后尝试运行awk脚本。
某些版本的unix不支持此语法。你是否在行尾放了一个半冒号?
在这种情况下,请执行以下操作:
file=counter".txt";
printf "Thread dump #%d\n", counter >file;