0
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.

IISログのとりあえずの確認(Excel & COPYコマンド)

Posted at

はじめに

ある期間のシステムへのアクセス状況の把握のためにIISログを分析することになりました。
分析対象のIISでは1日ごとに1つログファイルがあり、一つずつ分析するのが面倒でした。
また会社の自分のPC(Windows)では管理者権限がなく、ツールのインストールにはいろいろ手続きがあり面倒という事情がありました。
このような状況でとりあえず簡単に分析する方法を検討しました。

方法

  1. IISログを特定のディレクトリに集める
    適当なローカルディレクトリにIISログ(複数ファイル)を配置する

  2. Copyコマンドで1ファイルにマージする
    copy ".log" "all.logs"
    こんな感じのコマンドで、1.で配置した複数のIISログ(
    .log)が一つのファイル(all.logs)にマージされます。

  3. Excelにインポートする
    Excelでおなじみの方法でファイル(all.logs)を取り込む。(スペース区切りファイルとして認識させる)
    あとはフィルタや並び替え、ファイル毎にあるヘッダなどを取り除けば準備完了です。

こんな感じで使い慣れたExcelでとりあえずの分析が可能となりました。
私のようにこれで十分な現場もあるかもしれません。

0
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
0
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?