文章

Scrutiny监控外部硬盘参数

-PVE

--OMV

---Docker

----Scrutiny

鉴于以上结构,Scrutiny在本机监控的是OMV下关联的硬盘,PVE的系统盘需要通过外部监控传输数据给Scrutiny,遂开整。

安装监控程序(如已安装可跳过)

sudo apt install smartmontools -y

scrutiny-collector下载

https://github.com/AnalogJ/scrutiny/releases #wget太慢的话可以手动下载

挑一个喜欢的位置存放,比如/opt

cd /opt

mkdir scrutiny

cd scrutiny

vim update-scrutiny-client.sh

复制粘贴以下内容

#!/bin/sh

cd /opt/scrutiny

tag=$(curl -sL https://api.github.com/repos/AnalogJ/scrutiny/releases/latest | jq -r ".tag_name")
echo "当前版本"$tag

if [ -f version.txt ]; then    
echo "文件存在"
else
cat>/opt/scrutiny/version.txt<<EOF
new
EOF
fi

if [ $tag != $(cat /opt/scrutiny/version.txt) ]; then
rm -rf scrutiny-collector-metrics-linux-amd64
cat>/opt/scrutiny/version.txt<<EOF
$tag
EOF
wget https://github.com/AnalogJ/scrutiny/releases/download/${tag}/scrutiny-collector-metrics-linux-amd64
chmod a+x /opt/scrutiny/scrutiny-collector-metrics-linux-amd64
/opt/scrutiny/scrutiny-collector-metrics-linux-amd64 run --api-endpoint "http://192.168.1.1:9090"
else
echo "已是最新版本"
fi

保存并赋权运行,以后每次更新可以直接调用该脚本

chmod a+x update-scrutiny-client.sh
./update-scrutiny-client.sh

出现以下画面,则代表成功运行,前往scrutiny的web页面应该就能看到所监控的外部硬盘了

 ___   ___  ____  __  __  ____  ____  _  _  _  _
/ __) / __)(  _ \(  )(  )(_  _)(_  _)( \( )( \/ )
\__ \( (__  )   / )(__)(   )(   _)(_  )  (  \  /
(___/ \___)(_)\_)(______) (__) (____)(_)\_) (__)
AnalogJ/scrutiny/metrics                        linux.amd64-0.8.1

INFO[0000] Verifying required tools                      type=metrics
INFO[0000] Executing command: smartctl --scan --json     type=metrics
INFO[0000] Executing command: smartctl --info --json --device nvme /dev/nvme0  type=metrics
INFO[0000] Using WWN Fallback                            type=metrics
INFO[0000] Sending detected devices to API, for filtering & validation  type=metrics
INFO[0000] Collecting smartctl results for nvme0         type=metrics
INFO[0000] Executing command: smartctl --xall --json --device nvme /dev/nvme0  type=metrics
INFO[0000] Publishing smartctl results for 2022081915601  type=metrics
INFO[0000] Main: Completed                               type=metrics

编辑定时任务

crontab -e

在最后一行位置添加

第一行命令是每个月(可选)执行一次客户端的更新

第二行命令是每分钟(可选)向主机发送客户端的硬盘信息

0 1 1 * * sh /opt/scrutiny/update-scrutiny-client.sh
*/1 * * * * root /opt/scrutiny/scrutiny-collector-metrics-linux-amd64 run --api-endpoint "http://192.168.1.1:9090"

如果PVE设置了邮件提醒,但是又不想频繁收到scrutiny运行的信息,可以在"http://192.168.1.1:9090"最后加上(记得空格)

>/dev/null 22>&1

如果定时没生效或者需要全局性计划,则可以选择编辑下面的文件,需要重启服务

vim /etc/crontab
systemctl restart cron 重启服务

License:  CC BY 4.0