用于记录磁盘使用情况的脚本或程序

用于记录磁盘使用情况的脚本或程序

我想要一个程序或者更理想的情况下需要一个方法来记录磁盘使用情况。

为了解释我的意思,当有人安装 Ubuntu 时,大约会使用 4.5 GB 的磁盘空间。然后,当您安装/卸载程序时,此使用量会增加或减少。

我想要的是一种当发生变化(安装/保存或卸载/删除某些内容)时自动记录 txt 文件中使用的当前磁盘以及发生此变化的时间和日期的方法。

答案1

使用df命令跟踪磁盘空间,使用命令lsblk跟踪已安装的驱动器,以下脚本在后台运行,将记录所有已安装驱动器的可用空间的变化。它会创建一个日志文件:~/disklog它将更改写入其中(在 中k)。

如果你在终端运行它,它会同时输出结果。

日志文件的内容如下:

[mountpoint / change / date/time / used]

/ . . . . . . . . . . . . . . . . . .            36 k       Fri Mar 27 08:17:30 2015    used 87989352 k
/media/intern_2 . . . . . . . . . . .         -1792 k       Fri Mar 27 08:17:32 2015    used 562649592 k
/ . . . . . . . . . . . . . . . . . .            -4 k       Fri Mar 27 08:17:39 2015    used 87989356 k
/ . . . . . . . . . . . . . . . . . .           -36 k       Fri Mar 27 08:17:43 2015    used 87989392 k
/ . . . . . . . . . . . . . . . . . .            -4 k       Fri Mar 27 08:17:55 2015    used 87989396 k
/ . . . . . . . . . . . . . . . . . .             4 k       Fri Mar 27 08:18:11 2015    used 87989392 k
/ . . . . . . . . . . . . . . . . . .           -32 k       Fri Mar 27 08:18:13 2015    used 87989424 k

如何使用

  1. 将下面的脚本复制到一个空文件中,并将其保存为log_diskusage.py
  2. 在脚本的头部,设置时间间隔、阈值和日志文件的最大行数:

    #--- set time interval in seconds, threshold in k, and the max number of lines in the logfile
    interval = 20        # the interval between the checks
    threshold = 0        # in K, you'd probably set this higher
    max_lines = 5000     # if you want no limit, comment out the line line_limit() in the script
    #---
    
    • 运行interval磁盘空间检查,实际上需要 20 秒
    • :您treshold可能不想保留所有(非常)小的变化的记录,因为磁盘有很多可用磁盘空间的小变化。因为它是,它设置为10k
    • 因为max_lines日志文件会快速增长,特别是如果你将阈值设置为零
  3. 使用以下命令测试运行脚本:

    python3 /path/to/log_diskusage.py
    
  4. 如果一切正常,请将其添加到您的启动应用程序:Dash > 启动应用程序 > 添加。

剧本

#!/usr/bin/env python3
import subprocess
import os
import time
log = os.environ["HOME"]+"/disklog.txt"
#--- set time interval in seconds, threshold in k
interval = 1
threshold = 0
max_lines = 5000
#---

def line_limit():
    lines = open(log).readlines()
    if len(lines) > max_lines:
        with open(log, "wt") as limit:
            for l in lines[-max_lines:]:
                limit.write(l)

get = lambda cmd: subprocess.check_output([cmd]).decode("utf-8")

def disk_change():
    mounted = [l[l.find("/"):] for l in get("lsblk").splitlines() if "/" in l]
    data = get("df").splitlines()
    matches = [("/", data[1].split()[-4])]
    for l in mounted:
        if l != "/":
            match = [(l, d.replace(l, "").split()[-3]) for d in data if l in d][0]
            matches.append(match)
    return matches

disk_data1 = disk_change()
while True:
    time.sleep(interval)
    disk_data2 = disk_change()
    for latest in disk_data2:
        try:
            compare = [(latest[0], int(latest[1]), int(item[1])) for item in disk_data1 if latest[0] == item[0]][0]
            if not compare[1] == compare[2]:
                diff = compare[2]-compare[1]
                if abs(diff) > threshold:
                    with open(log, "a") as logfile:
                        drive = compare[0]; lt = 18-int((len(drive)/2)); lk = 14-len(str(diff))
                        s = drive+" ."*lt+lk*" "+str(diff)+" k   \t"+str(time.strftime("%c"))+"\t"+"used "+str(compare[1])+" k\n"
                        logfile.write(s)
                    print(s, end = "")
                    # if you don't want to set a limit to the max number of lines, comment out the line below
                    line_limit()
        except IndexError:
            pass
    disk_data1 = disk_data2

答案2

您应该使用已在 ubuntu 上安装的 vmstat,或者 iostat,但您必须安装它。 Linux 性能监控的 iostat、vmstat 和 mpstat 示例

相关内容