gpt4 book ai didi

linux - 使用 Shell 通过 ssh 从远程机器收集 Full GC 计数

转载 作者:太空宇宙 更新时间:2023-11-04 10:57:31 25 4
gpt4 key购买 nike

我有一个服务器列表文件,里面的所有服务器都授权给了我登录的机器。我想使用 Shell 从文件 /some/path/gc.log 收集所有服务器的完整 GC 计数。我该怎么做?

servers.txt:

192.168.1.101 root
192.168.1.102 root
192.168.1.103 root
192.168.1.104 root
192.168.1.105 root

到目前为止做了什么:

#!/bin/bash

while read line
do
ip=$(echo $line | cut -f1 -d ' ')
user=$(echo $line | cut -f2 -d ' ')

# how to log on remote server and get Full GC count from /some/path/gc.log

done < "servers.txt"

部分gc.log:

0.756: [Full GC (System) 0.756: [CMS: 0K->1696K(204800K), 0.0347096 secs] 11488K->1696K(252608K), [CMS Perm : 10328K->10320K(131072K)], 0.0347949 secs] [Times: user=0.06 sys=0.00, real=0.05 secs]  
1.728: [GC 1.728: [ParNew: 38272K->2323K(47808K), 0.0092276 secs] 39968K->4019K(252608K), 0.0093169 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2.642: [GC 2.643: [ParNew: 40595K->3685K(47808K), 0.0075343 secs] 42291K->5381K(252608K), 0.0075972 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]

最佳答案

我假设您想要每个主机的总 GC 文本报告,其中总 GC 定义为文件中的行数 gc.logFull出现。在这种情况下,使用:

#!/bin/bash
while read host user
do
echo "Total GC for $host is $(ssh "$user@$host" "grep 'Full' /path/to/gc.log | wc -l")."
done < "servers.txt"

这会产生如下输出:

Total GC for 192.168.1.101 is 3.

关于linux - 使用 Shell 通过 ssh 从远程机器收集 Full GC 计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28288331/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com