Debugging, Profiling, Code improvement tools
  • Introduction
  • Chapter1: 追蹤問題
    • 1.1.找出錯誤來源
  • Chapter2: 解決問題
    • 2.1.Check list
      • 2.1.1.確認前後條件
  • Chapter3: 錯誤訊息
    • 3.1.python
      • 'charmap' codec can't decode byte 0x8f in position 17: character maps to <undefined>
  • Chapter4:版本管理工具
    • 4.1.Git
      • 4.1.1.Working tree, Index/Cache, Repository and Object
      • 4.1.2.commit
      • 4.1.3.cherry-pick
      • 4.1.4.rebase
    • 4.2.TortoiseGit
      • 4.2.1.bisect
      • 4.4.2.reflog & reset
      • 4.2.3.blame
  • Chapter5: 除錯工具
    • 5.1.Visual studio
      • 5.1.1.輸出debug訊息
      • 5.1.2.中斷點
      • 5.1.3.載入符號, 檢視堆疊
      • 5.1.4.追蹤點
      • 5.1.5.單步執行程式
      • 5.1.6.日誌
      • 5.1.7.靜態程式分析
    • 5.2. WinDbg
      • 5.2.1.安裝WinDbg
      • 5.2.2.設定project及symbol path
      • 5.2.3.分析.dmp file
    • 5.3.API
      • 5.3.1.核心傾印
  • Chapter6: 效能分析工具
    • 6.1.Introduction
    • 6.2.Windows
      • 6.2.1.效能分析指標
      • 6.2.2.Windows Performance Monitor
      • 6.2.3.Process monitor
      • 6.2.4.Windows Performance Toolkit
    • 6.3.C++ project
      • 6.3.1.SMART BEAR AQ Time
    • 6.4.Python project
      • 6.4.1.cProfile, snakeviz
  • Chapter7: 程式碼優化工具
    • 7.1.Python
      • 7.1.1.vulture
Powered by GitBook
On this page
  • 1.用途
  • 2.用法
  • 3.Process Activity Summary

Was this helpful?

  1. Chapter6: 效能分析工具
  2. 6.2.Windows

6.2.3.Process monitor

Previous6.2.2.Windows Performance MonitorNext6.2.4.Windows Performance Toolkit

Last updated 5 years ago

Was this helpful?

1.用途

  • 1.顯示real-time file system, Registry及process/thread activity

  • 2.結合了Regmon及Filemon兩大legacy tool

  • 3.可以顯示詳細的event properties:

    • Event資訊

    • Process資訊

    • Stack 資訊

  • 4.Filter過濾資訊, 但其他資訊仍可保留

2.用法

  • 4.選擇列出需要的資訊, 共有5種

    • Show Registry Activity

    • Show File System Activity

    • Show Network Activity

    • Show Process and Thread Activity

    • Show Profiling Event

3.Process Activity Summary

  • 可以看出當時哪些process的CPU最忙碌, 存取網路狀態, 以及Disk I/O狀態等

1.下載

2.開啟並設定Filter:

3.開始掃描

1.Tools -> Process Activity Summary

2.點選特定的process, 或是點選detail

Procmon