3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

コマンドだけで毎秒の転送量を監視する

Posted at

監視サービスを利用せずに、でサーバーの転送量を簡単に把握したい場合のコマンド例。

$ watch -d -n 1 "awk '\$1==\"eth0:\" {printf \"rx: %fMB tx:%fMB\n\", \$2/1024/1024, \$10/1024/1024}' < /proc/net/dev"
Every 1.0s: awk '$1=="eth0:" {printf "rx: %fMB tx:%fMB\n", $2/1024/1024, $10/1024/1024}' < /proc/net/dev  Wed Dec 2     19:50:40 2020

rx: 12077.659203MB 8547.6927MB

watch で後述するコマンドを繰り返して実行する。
watch -d で繰り返し実行するコマンドの結果の差分がわかるように表示する。 watch -n 1 は 秒ごとにコマンドを実行するオプション。5 秒ごとに実行したい場合は、watch -n 5 と入力する。

awk '$1=="eth0:" {printf "rx: %fMB tx:%fMB\n", $2/1024/1024, $10/1024/1024}' < /proc/net/dev/proc/net/dev ファイルの内容を読み込み、区切り文字で分割された 1 番目の文字列が eth0: と一致する行の場合に、2 番目と 10 番目の区切り文字を 2 回 1024 で割って (MB単位で) 表示する内容となる。

eth0: は監視をしたいネットワークインターフェース名を任意で選択できる。

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?