summaryrefslogtreecommitdiff
path: root/Documentation/project-docs
diff options
context:
space:
mode:
authorBrian Robbins <brianrob@microsoft.com>2016-06-06 13:03:34 -0700
committerBrian Robbins <brianrob@microsoft.com>2016-06-06 13:03:34 -0700
commit86011d693a784a81f21b268ec625021b7d4f167d (patch)
treeac3b067af060ad9d62edbd9920c4a8d106c79a2a /Documentation/project-docs
parent988100df51ad10884ef50f26c565771b4e9cf149 (diff)
parent9c2588aa20d952dcc4214d9245d7f841b896036c (diff)
downloadcoreclr-86011d693a784a81f21b268ec625021b7d4f167d.tar.gz
coreclr-86011d693a784a81f21b268ec625021b7d4f167d.tar.bz2
coreclr-86011d693a784a81f21b268ec625021b7d4f167d.zip
Merge pull request #5511 from brianrob/linuxperf
Add Performance Tracing Documentation for Windows and Linux
Diffstat (limited to 'Documentation/project-docs')
-rw-r--r--Documentation/project-docs/linux-performance-tracing.md119
-rw-r--r--Documentation/project-docs/windows-performance-tracing.md14
2 files changed, 133 insertions, 0 deletions
diff --git a/Documentation/project-docs/linux-performance-tracing.md b/Documentation/project-docs/linux-performance-tracing.md
new file mode 100644
index 0000000000..8e8f2b10c0
--- /dev/null
+++ b/Documentation/project-docs/linux-performance-tracing.md
@@ -0,0 +1,119 @@
+Performance Tracing on Linux
+============================
+
+When a performance problem is encountered on Linux, these instructions can be used to gather detailed information about what was happening on the machine at the time of the performance problem.
+
+#Required Tools#
+- **perfcollect**: Bash script that automates data collection.
+ - Available at <http://aks.ms/perfcollect>.
+- **PerfView**: Windows-based performance tool that can also analyze trace files collected with Perfcollect.
+ - Available at <http://aks.ms/perfview>.
+
+#Preparing Your Machine#
+Follow these steps to prepare your machine to collect a performance trace.
+
+1. Download Perfcollect.
+
+ > ```bash
+ > curl -OL http://aks.ms/perfcollect
+ > ```
+
+2. Make the script executable.
+
+ > ```bash
+ > chmod +x perfcollect
+ > ```
+
+3. Install tracing prerequisites - these are the actual tracing libraries. For details on prerequisites, see [below](#prerequisites).
+
+ > ```bash
+ > sudo ./perfcollect install
+ > ```
+
+#Collecting a Trace#
+1. Have two shell windows available - one for controlling tracing, referred to as **[Trace]**, and one for running the application, referred to as **[App]**.
+2. **[App]** Setup the application shell - this enables tracing configuration inside of CoreCLR.
+
+ > ```bash
+ > export COMPlus_PerfMapEnabled=1
+ > export COMPlus_EnableEventLog=1
+ > ```
+
+3. **[Trace]** Start collection.
+
+ > ```bash
+ > sudo ./perfcollect collect sampleTrace
+ > ```
+
+ Expected Output:
+
+ > ```bash
+ > Collection started. Press CTRL+C to stop.
+ > ```
+
+4. **[App]** Run the app - let it run as long as you need to in order to capture the performance problem. Generally, you don't need very long. As an example, for a CPU investigation, 5-10 seconds of the high CPU situation is usually enough.
+
+ > ```bash
+ > dotnet run
+ > ```
+
+5. **[Trace]** Stop collection - hit CTRL+C.
+
+ > ```bash
+ > ^C
+ > ...STOPPED.
+ >
+ > Starting post-processing. This may take some time.
+ >
+ > Generating native image symbol files
+ > ...SKIPPED
+ > Saving native symbols
+ > ...FINISHED
+ > Exporting perf.data file
+ > ...FINISHED
+ > Compressing trace files
+ > ...FINISHED
+ > Cleaning up artifacts
+ > ...FINISHED
+ >
+ > Trace saved to sampleTrace.trace.zip
+ > ```
+
+ The compressed trace file is now stored in the current working directory.
+
+#Viewing a Trace#
+Traces are best viewed using PerfView on Windows. Note that we're currently looking into porting the analysis pieces of PerfView to Linux so that the entire investigation can occur on Linux.
+
+##Open the Trace File##
+1. Copy the trace.zip file from Linux to a Windows machine.
+2. Download PerfView from <http://aka.ms/perfview>.
+3. Run PerfView.exe
+
+ > ```bash
+ > PerfView.exe <path to trace.zip file>
+ > ```
+
+##Select a View##
+PerfView will display the list of views that are supported based on the data contained in the trace file.
+
+- For CPU investigations, choose **CPU stacks**.
+- For very detailed GC information, choose **GCStats**.
+- For per-process/module/method JIT information, choose **JITStats**.
+- If there is not a view for the information you need, you can try looking for the events in the raw events view. Choose **Events**.
+
+For more details on how to interpret views in PerfView, see help links in the view itself, or from the main window in PerfView choose **Help->Users Guide**.
+
+#Extra Information#
+This information is not strictly required to collect and analyze traces, but is provided for those who are interested.
+
+##Prerequisites##
+Perfcollect will alert users to any prerequisites that are not installed and offer to install them. Prerequisites can be installed automatically by running:
+
+>```bash
+>sudo ./perfcollect install
+>```
+
+The current prerequisites are:
+
+1. perf: Also known as perf_event, the Linux Performance Events sub-system and companion user-mode collection/viewer application. perf is part of the Linux kernel source, but is not usually installed by default.
+2. LTTng: Stands for "Linux Tracing Toolkit Next Generation", and is used to capture event data emitted at runtime by CoreCLR. This data is then used to analyze the behavior of various runtime components such as the GC, JIT and thread pool. \ No newline at end of file
diff --git a/Documentation/project-docs/windows-performance-tracing.md b/Documentation/project-docs/windows-performance-tracing.md
new file mode 100644
index 0000000000..04fab29fec
--- /dev/null
+++ b/Documentation/project-docs/windows-performance-tracing.md
@@ -0,0 +1,14 @@
+Performance Tracing on Windows
+=====================================
+
+Performance tracing on Windows is done using the PerfView, which can be downloaded at <http://aka.ms/Perfview>.
+
+PerfView has significant documentation built-in, which includes:
+
+- Getting started help.
+- Collection and investigation walk-through videos.
+- An extensive users guide.
+
+To get started, download PerfView and use the links on the main screen to get help.
+
+If you have specific questions, please post them in an issue here. \ No newline at end of file