93

Ping默认返回:

64 bytes from 203.173.50.132: icmp_seq=0 ttl=244 time=57.746 ms

有什么方法可以让它添加时间戳吗?

例如,

Mon 21 May 2012 15:15:37 EST | 64 bytes from 203.173.50.132: icmp_seq=0 ttl=244 time=57.746 ms

我在 OS X v10.7 (Lion) 上,它似乎有一些BSD版本的 ping。

4

16 回答 16

138

由于某种原因,我无法将基于 Perl 的解决方案重定向到文件,因此我不断搜索并找到了bash唯一的方法:

ping www.google.fr | while read pong; do echo "$(date): $pong"; done

Wed Jun 26 13:09:23 CEST 2013: PING www.google.fr (173.194.40.56) 56(84) bytes of data.
Wed Jun 26 13:09:23 CEST 2013: 64 bytes from zrh04s05-in-f24.1e100.net (173.194.40.56): icmp_req=1 ttl=57 time=7.26 ms
Wed Jun 26 13:09:24 CEST 2013: 64 bytes from zrh04s05-in-f24.1e100.net (173.194.40.56): icmp_req=2 ttl=57 time=8.14 ms

功劳归于https://askubuntu.com/a/137246

于 2013-06-26T11:13:47.053 回答
80

如果您的 AWK 没有strftime()

ping host | perl -nle 'print scalar(localtime), " ", $_'

要将其重定向到文件,请使用标准 shell 重定向并关闭输出缓冲:

ping host | perl -nle 'BEGIN {$|++} print scalar(localtime), " ", $_' > outputfile

如果您想要时间戳的 ISO8601 格式:

ping host | perl -nle 'use Time::Piece; BEGIN {$|++} print localtime->datetime, " ", $_' > outputfile
于 2012-05-21T05:59:52.027 回答
34

来自man ping

   -D     Print timestamp (unix time + microseconds as in gettimeofday) before each line.

它会产生这样的东西:

[1337577886.346622] 64 bytes from 4.2.2.2: icmp_req=1 ttl=243 time=47.1 ms

然后时间戳可以从ping响应中解析出来并转换为所需的格式date

于 2012-05-21T05:20:10.690 回答
26

在 OS X 上,您可以简单地使用 --apple-time 选项:

ping -i 2 --apple-time www.apple.com

产生如下结果:

10:09:55.691216 64 bytes from 72.246.225.209: icmp_seq=0 ttl=60 time=34.388 ms
10:09:57.687282 64 bytes from 72.246.225.209: icmp_seq=1 ttl=60 time=25.319 ms
10:09:59.729998 64 bytes from 72.246.225.209: icmp_seq=2 ttl=60 time=64.097 ms
于 2017-08-22T10:10:49.343 回答
21
  1. 终端输出:

    ping -i 5 google.com | xargs -L 1 -I '{}' date '+%Y-%m-%d %H:%M:%S: {}'

  2. 文件输出:

    ping -i 5 google.com | xargs -L 1 -I '{}' date '+%Y-%m-%d %H:%M:%S: {}' > test.txt

  3. 终端+文件输出:

    ping -i 5 google.com | xargs -L 1 -I '{}' date '+%Y-%m-%d %H:%M:%S: {}' | tee test.txt

  4. 文件输出背景:

    nohup ping -i 5 google.com | xargs -L 1 -I '{}' date '+%Y-%m-%d %H:%M:%S: {}' > test.txt &

于 2016-05-27T06:02:56.880 回答
12

我最初的提交是不正确的,因为它没有评估每一行的日期。已进行更正。

试试这个

 ping google.com | xargs -L 1 -I '{}' date '+%+: {}'

产生以下输出

Thu Aug 15 10:13:59 PDT 2013: PING google.com (74.125.239.103): 56 data bytes
Thu Aug 15 10:13:59 PDT 2013: 64 bytes from 74.125.239.103: icmp_seq=0 ttl=55 time=14.983 ms
Thu Aug 15 10:14:00 PDT 2013: 64 bytes from 74.125.239.103: icmp_seq=1 ttl=55 time=17.340 ms
Thu Aug 15 10:14:01 PDT 2013: 64 bytes from 74.125.239.103: icmp_seq=2 ttl=55 time=15.898 ms
Thu Aug 15 10:14:02 PDT 2013: 64 bytes from 74.125.239.103: icmp_seq=3 ttl=55 time=15.720 ms
Thu Aug 15 10:14:03 PDT 2013: 64 bytes from 74.125.239.103: icmp_seq=4 ttl=55 time=16.899 ms
Thu Aug 15 10:14:04 PDT 2013: 64 bytes from 74.125.239.103: icmp_seq=5 ttl=55 time=16.242 ms
Thu Aug 15 10:14:05 PDT 2013: 64 bytes from 74.125.239.103: icmp_seq=6 ttl=55 time=16.574 ms

-L 1 选项使 xargs 一次处理一行而不是单词。

于 2013-08-09T00:52:18.200 回答
8

在macos上你可以做

ping --apple-time 127.0.0.1

输出看起来像

16:07:11.315419 64 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.064 ms
16:07:12.319933 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.157 ms
16:07:13.322766 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.066 ms
16:07:14.324649 64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.148 ms
16:07:15.328743 64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.092 ms
于 2017-10-19T22:10:35.513 回答
7

试试这个:

ping www.google.com | while read endlooop; do echo "$(date): $endlooop"; done

它返回如下内容:

Wednesday 18 January  09:29:20 AEDT 2017: PING www.google.com (216.58.199.36) 56(84) bytes of data.
Wednesday 18 January  09:29:20 AEDT 2017: 64 bytes from syd09s12-in-f36.1e100.net (216.58.199.36): icmp_seq=1 ttl=57 time=2.86 ms
Wednesday 18 January  09:29:21 AEDT 2017: 64 bytes from syd09s12-in-f36.1e100.net (216.58.199.36): icmp_seq=2 ttl=57 time=2.64 ms
Wednesday 18 January  09:29:22 AEDT 2017: 64 bytes from syd09s12-in-f36.1e100.net (216.58.199.36): icmp_seq=3 ttl=57 time=2.76 ms
Wednesday 18 January  09:29:23 AEDT 2017: 64 bytes from syd09s12-in-f36.1e100.net (216.58.199.36): icmp_seq=4 ttl=57 time=1.87 ms
Wednesday 18 January  09:29:24 AEDT 2017: 64 bytes from syd09s12-in-f36.1e100.net (216.58.199.36): icmp_seq=5 ttl=57 time=2.45 ms
于 2017-01-17T16:40:54.623 回答
5

更简单的选择只是使用ts(1)from moreutils (在大多数发行版上相当标准)。

$ ping 1.1.1.1 | ts 

Feb 13 12:49:17 PING 1.1.1.1 (1.1.1.1) 56(84) bytes of data. 
Feb 13 12:49:17 64 bytes from 1.1.1.1: icmp_seq=1 ttl=57 time=5.92 ms
Feb 13 12:49:18 64 bytes from 1.1.1.1: icmp_seq=2 ttl=57 time=5.30 ms
Feb 13 12:49:19 64 bytes from 1.1.1.1: icmp_seq=3 ttl=57 time=5.71 ms
Feb 13 12:49:20 64 bytes from 1.1.1.1: icmp_seq=4 ttl=57 time=5.86 ms

或者

 ping 1.1.1.1 -I eth0 | ts "[%FT%X]"

允许使用与 shell/ 解决方法相同的 strftime 格式字符串date

于 2021-02-13T00:32:59.837 回答
4

将结果通过管道传输到awk

 ping host | awk '{if($0 ~ /bytes from/){print strftime()"|"$0}else print}'
于 2012-05-21T05:28:31.653 回答
2

您可以在~/.bashrc文件中创建一个函数,以便在控制台上获得一个 ping 命令ping-t

function ping-t { ping "$1" | while read pong; do echo "$(date): $pong"; done; }

现在您可以在控制台上调用它:

ping-t example.com

Sa 31. Mär 12:58:31 CEST 2018:PING example.com (93.184.216.34) 56(84) 字节的数据。
Sa 31. Mär 12:58:31 CEST 2018:来自 93.184.216.34 (93.184.216.34) 的 64 个字节:icmp_seq=1 ttl=48 time=208 ms
Sa 31. Mar 12:58:32 CEST 2018:来自 93.184 的 64 个字节.216.34 (93.184.216.34): icmp_seq=2 ttl=48 时间=233 ms

于 2018-03-31T10:59:05.893 回答
1

您没有指定需要此类输出多长时间的任何时间戳或间隔,因此我认为它是一个无限循环。您可以根据需要进行相应更改。

while true
do
   echo -e "`date`|`ping -n -c 1 <IP_TO_PING>|grep 'bytes from'`"
   sleep 2
done
于 2012-05-21T18:25:18.123 回答
1
ping -D -n -O -i1 -W1 8.8.8.8

或许

while true; do \
    ping -n -w1 -W1 -c1 8.8.8.8 \
    | grep -E "rtt|100%" \
    | sed -e "s/^/`date` /g"; \
    sleep 1; \
done
于 2014-10-31T02:16:30.413 回答
1

我还需要这个来监控我的数据库镜像超时问题的网络问题。我使用如下命令代码:

ping -t Google.com|cmd /q /v /c "(pause&pause)>nul & for /l %a in () do (set /p "data=" && echo(!date! !time! !data!)&ping -n 2 Google.com>nul" >C:\pingtest.txt

您只需要将 Google.com 修改为您的服务器名称。它非常适合我。并记住在完成后停止此操作。pingtest.txt 文件将以每秒 1 KB 的速度增加(大约)。

感谢 raymond.cc。https://www.raymond.cc/blog/timestamp-ping-with-hrping/

于 2017-09-15T13:35:38.023 回答
0

试试这条线。

while sleep 1;do echo "$(date +%d-%m-%y-%T) $(ping -c 1 whatever.com | gawk 'FNR==2{print "Response from:",$4,$8}')" | tee -a /yourfolder/pingtest.log;done

你必须取消它ctrl-c

于 2016-11-22T01:50:20.860 回答
0

只需使用 sed:

ping google.com|sed -r "s/(.*)/$(date) \1/g"
于 2021-02-13T03:00:20.060 回答