dmesg 타임 스탬프를 사용자 지정 날짜 형식으로 변환
dmesg 타임 스탬프를 이해하려고 노력하고 있으며 Java 날짜 / 사용자 지정 날짜 형식으로 변경하기 위해 변환하기가 어렵습니다.
어떤 도움이라도 대단히 감사합니다.
샘플 dmesg 로그 :
[14614.647880] airo(eth1): link lost (missed beacons)
감사!
dmesg
타임 스탬프를 이해하는 것은 매우 간단합니다. 커널이 시작된 이후의 시간입니다. 따라서 시작 시간 ( uptime
)이 있으면 초를 더하여 원하는 형식으로 표시 할 수 있습니다.
또는 더 나은 방법은 -T
옵션을 사용 하고 사람이 읽을 수있는 형식을 구문 분석 할 수 있습니다 .
로부터 man 페이지 :
-T, --ctime
Print human readable timestamps. The timestamp could be inaccurate!
The time source used for the logs is not updated after system SUSPEND/RESUME.
dr 답변 의 도움으로 .bashrc에 넣도록 변환하는 해결 방법을 작성했습니다. 타임 스탬프가 없거나 이미 올바른 타임 스탬프가 있으면 아무 것도 깨지지 않습니다.
dmesg_with_human_timestamps () {
$(type -P dmesg) "$@" | perl -w -e 'use strict;
my ($uptime) = do { local @ARGV="/proc/uptime";<>}; ($uptime) = ($uptime =~ /^(\d+)\./);
foreach my $line (<>) {
printf( ($line=~/^\[\s*(\d+)\.\d+\](.+)/) ? ( "[%s]%s\n", scalar localtime(time - $uptime + $1), $2 ) : $line )
}'
}
alias dmesg=dmesg_with_human_timestamps
또한 dmesg 타임 스탬프 변환 논리 및 타임 스탬프가 없을 때 활성화하는 방법에 대한 좋은 읽기 : https://supportcenter.checkpoint.com/supportcenter/portal?eventSubmit_doGoviewsolutiondetails=&solutionid=sk92677
RHEL / CentOS 6과 같이 "dmesg -T"가없는 시스템의 경우 이전 에 lucas-cimon이 제공 한 "dmesg_with_human_timestamps"기능이 마음에 들었습니다 . 그러나 가동 시간이 큰 일부 상자에는 약간의 문제가 있습니다. dmesg의 커널 타임 스탬프는 개별 CPU에서 유지하는 가동 시간 값에서 파생 된 것으로 나타났습니다. 시간이 지남에 따라 실시간 시계와 동기화되지 않습니다. 결과적으로 최근 dmesg 항목에 대한 가장 정확한 변환은 / proc / uptime이 아닌 CPU 클럭을 기반으로합니다. 예를 들어, 특정 CentOS 6.6 상자의 경우 :
# grep "\.clock" /proc/sched_debug | head -1
.clock : 32103895072.444568
# uptime
15:54:05 up 371 days, 19:09, 4 users, load average: 3.41, 3.62, 3.57
# cat /proc/uptime
32123362.57 638648955.00
CPU 가동 시간을 밀리 초 단위로 감안하면 여기에 거의 5 시간 반의 오프셋이 있습니다. 그래서 스크립트를 수정하고 프로세스에서 네이티브 bash로 변환했습니다.
dmesg_with_human_timestamps () {
FORMAT="%a %b %d %H:%M:%S %Y"
now=$(date +%s)
cputime_line=$(grep -m1 "\.clock" /proc/sched_debug)
if [[ $cputime_line =~ [^0-9]*([0-9]*).* ]]; then
cputime=$((BASH_REMATCH[1] / 1000))
fi
dmesg | while IFS= read -r line; do
if [[ $line =~ ^\[\ *([0-9]+)\.[0-9]+\]\ (.*) ]]; then
stamp=$((now-cputime+BASH_REMATCH[1]))
echo "[$(date +"${FORMAT}" --date=@${stamp})] ${BASH_REMATCH[2]}"
else
echo "$line"
fi
done
}
alias dmesgt=dmesg_with_human_timestamps
그래서 KevZero 는 덜 복잡한 솔루션을 요청했기 때문에 다음을 생각해 냈습니다.
sed -r 's#^\[([0-9]+\.[0-9]+)\](.*)#echo -n "[";echo -n $(date --date="@$(echo "$(grep btime /proc/stat|cut -d " " -f 2)+\1" | bc)" +"%c");echo -n "]";echo -n "\2"#e'
예를 들면 다음과 같습니다.
$ dmesg|tail | sed -r 's#^\[([0-9]+\.[0-9]+)\](.*)#echo -n "[";echo -n $(date --date="@$(echo "$(grep btime /proc/stat|cut -d " " -f 2)+\1" | bc)" +"%c");echo -n "]";echo -n "\2"#e'
[2015-12-09T04:29:20 COT] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[2015-12-09T04:29:23 COT] wlp3s0: authenticate with dc:9f:db:92:d3:07
[2015-12-09T04:29:23 COT] wlp3s0: send auth to dc:9f:db:92:d3:07 (try 1/3)
[2015-12-09T04:29:23 COT] wlp3s0: authenticated
[2015-12-09T04:29:23 COT] wlp3s0: associate with dc:9f:db:92:d3:07 (try 1/3)
[2015-12-09T04:29:23 COT] wlp3s0: RX AssocResp from dc:9f:db:92:d3:07 (capab=0x431 status=0 aid=6)
[2015-12-09T04:29:23 COT] wlp3s0: associated
[2015-12-09T04:29:56 COT] thinkpad_acpi: EC reports that Thermal Table has changed
[2015-12-09T04:29:59 COT] i915 0000:00:02.0: BAR 6: [??? 0x00000000 flags 0x2] has bogus alignment
[2015-12-09T05:00:52 COT] thinkpad_acpi: EC reports that Thermal Table has changed
더 나은 성능을 원한다면 proc의 타임 스탬프를 대신 변수에 넣으십시오. :)
최신 버전의 dmesg에서는 dmesg -T
.
/ proc / stat에서 "btime"을 참조해야합니다.이 시간은 시스템이 최근에 부팅 된 Unix epoch 시간입니다. 그런 다음 해당 시스템 부팅 시간을 기반으로 dmesg에 지정된 경과 시간 (초)을 추가하여 각 이벤트의 타임 스탬프를 계산할 수 있습니다.
예전 리눅스 배포판에서 또 다른 옵션은 예를 들어 Perl 또는 Python에서 래핑 스크립트를 사용하는 것입니다.
여기에서 솔루션을 참조하십시오.
http://linuxaria.com/article/how-to-make-dmesg-timestamp-human-readable?lang=en http://jmorano.moretrix.com/2012/03/dmesg-human-readable-timestamps/
If you don't have the -T
option for dmesg
as for example on Andoid, you can use the busybox
version. The following solves also some other issues:
- The
[0.0000]
format is preceded by something that looks like misplaced color information, prefixes like<6>
. - Make integers from floats.
It is inspired by this blog post.
#!/bin/sh
# Translate dmesg timestamps to human readable format
# uptime in seconds
uptime=$(cut -d " " -f 1 /proc/uptime)
# remove fraction
uptime=$(echo $uptime | cut -d "." -f1)
# run only if timestamps are enabled
if [ "Y" = "$(cat /sys/module/printk/parameters/time)" ]; then
dmesg | sed "s/[^\[]*\[/\[/" | sed "s/^\[[ ]*\?\([0-9.]*\)\] \(.*\)/\\1 \\2/" | while read timestamp message; do
timestamp=$(echo $timestamp | cut -d "." -f1)
ts1=$(( $(busybox date +%s) - $uptime + $timestamp ))
ts2=$(busybox date -d "@${ts1}")
printf "[%s] %s\n" "$ts2" "$message"
done
else
echo "Timestamps are disabled (/sys/module/printk/parameters/time)"
fi
Note, however, that this implementation is quite slow.
참고URL : https://stackoverflow.com/questions/13890789/convert-dmesg-timestamp-to-custom-date-format
'programing' 카테고리의 다른 글
iOS 자바 스크립트 브리지 (0) | 2020.08.20 |
---|---|
SQLAlchemy ORM을 사용한 대량 삽입 (0) | 2020.08.20 |
C에 "foreach"루프 구조가 있습니까? (0) | 2020.08.20 |
매우 큰 도커 이미지에 대한 컨텍스트 빌드 (0) | 2020.08.20 |
PHP $ array [] = $ value 또는 array_push ($ array, $ value)에서 사용하는 것이 더 낫습니까? (0) | 2020.08.20 |