我vnstat
可以获取当月、当日、当小时或前 10 天的网络使用情况。有什么方法可以在终端上获取特定日期的网络使用情况吗?通过 vnstat 还是其他工具?
编辑:
我想要从特定日期到当前日期或两个日期之间的用法,而不仅仅是特定日期。
答案1
vnStat 从 2.0 版(目前为测试版)开始支持针对所有列表输出的日期和时间范围特定查询。该版本还允许自由配置数据保留期限,因此不再有每日数据的 30 天硬编码限制。请参阅更改注释和GitHub 存储库更多细节。
$ vnstat --days --begin 2018-04-02 --end 2018-04-06
em1 / daily
day rx | tx | total
-------------------------+-------------+---------------------------------------
2018-04-02 4.88 GB | 1.95 GB | 6.83 GB %%%%%%%%%%%%%%%%%:::::::
2018-04-03 3.56 GB | 1.09 GB | 4.66 GB %%%%%%%%%%%%::::
2018-04-04 3.91 GB | 2.07 GB | 5.99 GB %%%%%%%%%%%%%%:::::::
2018-04-05 2.61 GB | 1.63 GB | 4.24 GB %%%%%%%%%:::::
2018-04-06 3.29 GB | 1.43 GB | 4.72 GB %%%%%%%%%%%:::::
-------------------------+-------------+---------------------------------------
sum of 5 18.25 GB | 8.17 GB | 26.43 GB
答案2
将以下代码复制到文件中。我使用的是~/bin/vnstat-hist.sh
。保存文件后,使用以下命令将其标记为可执行文件:
chmod a+x ~/bin/vnstat.sh
要运行脚本,请使用天数参数调用它。例如,对于今天,请使用vnstat-hist.sh 1
。对于过去五天(包括今天),请使用:
$ vnstat-hist.sh 5
vnstat -d 5 day summary
2018-04-27 6.21 GiB | 1.83 GiB | 8.04 GiB | 780.45 kbit/s
2018-04-28 5.97 GiB | 1.05 GiB | 7.02 GiB | 681.20 kbit/s
2018-04-29 8.27 GiB | 1.47 GiB | 9.74 GiB | 945.40 kbit/s
2018-04-30 4.09 GiB | 1.35 GiB | 5.44 GiB | 527.97 kbit/s
2018-05-01 1.36 GiB | 1.13 GiB | 2.49 GiB | 315.40 kbit/s
Total:32.73
vnstat-hist.sh
Bash 脚本
请注意,该程序可以更短,但希望设计对于新手来说更容易遵循。
#!/bin/bash
# NAME: vnstat-hist.sh
# PATH: $HOME/bin
# DESC: Written for AU Q&A: https://askubuntu.com/questions/1030345/get-network-usage-from-specific-date-on-terminal/1030399?noredirect=1#comment1675801_1030399
# Get total vnStat bytes from x days ago to today.
# Parameter 1 = number of days: 1= today, 2= yesterday + today, etc.
# DATE: May 1, 2018.
re='^[0-9]+$'
if ! [[ $1 =~ $re ]] ; then
echo "Error: Parameter 1 must be number of days" >&2; exit 1
fi
# Get body of vnstat -d into file, ie strip headings and total lines
# First get count of all lines, then delete 2 total lines & 5 heading lines
vnstat -d > /tmp/vnstat-hist.txt
NumLines=$(cat /tmp/vnstat-hist.txt | wc -l)
NumLines=$(( NumLines - 2))
cat /tmp/vnstat-hist.txt | head -n $NumLines > /tmp/vnstat-hist2.txt
NumLines=$(( NumLines - 5))
cat /tmp/vnstat-hist2.txt | tail -n $NumLines > /tmp/vnstat-hist.txt
MaxDays=$(cat /tmp/vnstat-hist.txt | wc -l)
DayCount="$1"
(( $DayCount > $MaxDays )) && DayCount=$MaxDays
cat /tmp/vnstat-hist.txt | tail -n $DayCount > /tmp/vnstat-hist2.txt
echo "vnstat -d $DayCount day summary"
awk '{sum+=$8;} END { print "Total:" sum }1' /tmp/vnstat-hist2.txt
# Clean up temp files
rm -f /tmp/vnstat-hist.txt
rm -f /tmp/vnstat-hist2.txt
exit 0