監控伺服器磁碟使用情況

2021-08-29 18:21:18 字數 669 閱讀 9112

1、檢視伺服器磁碟使用情況

df -h :檢視系統掛載的目錄以及檔案系統

du -sh :檢視資料夾的大小

df: 『/run/user/1000/gvfs』: permission denied:為linux系統的bug可以忽略

2、監控指令碼

#!/bin/bash

#獲取當前掛載目錄的占用空間

echo $usedisk

#對當前占用空間向上取整

use=$((usedisk+1))

echo $use

#系統分配的磁碟大小

alldisk=196

#獲取當前掛載目錄的磁碟使用率

useproportion=$(echo  | awk  "" | cut -f 1 -d ".")

echo $useproportion

#磁碟使用率的告警值

flag=80

if [ $useproportion -lt $flag ]

then

#磁碟空間正常

echo "true"

else

#磁碟空間異常

echo "false" fi

監控linux磁碟使用情況

一.配置mail 1.安裝mail yum y install mailx 2.調整配置檔案 vi etc mail.rc 在最後兩行增加如下語句 set from abc qq.com smtp smtp.exmail.qq.com set smtp auth user abc qq.com sm...

Elasticsearch 磁碟使用情況

es可以根據磁碟使用情況來決定是否繼續分配shard。預設設定是開啟的,也可以通過api關閉 cluster.routing.allocation.disk.threshold enabled false 在開啟的情況下,有兩個重要的設定 cluster.routing.allocation.dis...

Linux伺服器記憶體使用情況解釋

檢視記憶體使用情況,可以使用命令 free m 其結果大致如下 total used free shared buffers cached mem 32108 30681 1426 0 123 21165 buffers cache 9392 22715 swap 34287 1262 33025 ...