Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Performance/SimplePerf/SimplePerf.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
Starts a collector using Exchange counter defaults plus all \Thread counters. The collector is non-circular,
will run for 8 hours, has a 5-second interval, has a max file size of 1 GB, and saves the logs to C:\SimplePerf.
.EXAMPLE
PS C:\> .\SimplePerf.sp1 -Start -Duration 02:00:00 -Interval 30 -MaximumSizeInMB 512 -OutputPath C:\PerfLogs
PS C:\> .\SimplePerf.ps1 -Start -Duration 02:00:00 -Interval 30 -MaximumSizeInMB 512 -OutputFolder C:\PerfLogs
Starts a collector using Exchange counter defaults. The collector is non-circular, will run for 2 hours, has a
30-second interval, has a max file size of 512 MB, and saves the logs to C:\PerfLogs.
.EXAMPLE
PS C:\> .\SimplePerf.sp1 -Start -Duration 02:00:00 -Interval 30 -MaximumSizeInMB 512 -OutputPath C:\PerfLogs
PS C:\> .\SimplePerf.ps1 -Start -Duration 02:00:00 -Interval 30 -MaximumSizeInMB 512 -OutputFolder C:\PerfLogs
Starts a collector using Exchange counter defaults. The collector is non-circular, will run for 2 hours, has a
30-second interval, has a max file size of 512 MB, and saves the logs to C:\PerfLogs.
.EXAMPLE
Expand Down
4 changes: 2 additions & 2 deletions docs/Performance/SimplePerf.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ Starts a collector using Exchange counter defaults plus all \Thread counters. Th
will run for 8 hours, has a 5-second interval, has a max file size of 1 GB, and saves the logs to C:\SimplePerf.

```powershell
.\SimplePerf.sp1 -Start -Duration 02:00:00 -Interval 30 -MaximumSizeInMB 512 -OutputPath C:\PerfLogs
.\SimplePerf.ps1 -Start -Duration 02:00:00 -Interval 30 -MaximumSizeInMB 512 -OutputFolder C:\PerfLogs
```
Starts a collector using Exchange counter defaults. The collector is non-circular, will run for 2 hours, has a
30-second interval, has a max file size of 512 MB, and saves the logs to C:\PerfLogs.

```powershell
.\SimplePerf.sp1 -Start -Duration 02:00:00 -Interval 30 -MaximumSizeInMB 512 -OutputPath C:\PerfLogs
.\SimplePerf.ps1 -Start -Duration 02:00:00 -Interval 30 -MaximumSizeInMB 512 -OutputFolder C:\PerfLogs
```
Starts a collector using Exchange counter defaults. The collector is non-circular, will run for 2 hours, has a
30-second interval, has a max file size of 512 MB, and saves the logs to C:\PerfLogs.
Expand Down