Skip to content

Commit

Permalink
Spelling is harder
Browse files Browse the repository at this point in the history
  • Loading branch information
itoleck committed Jun 26, 2022
1 parent 3a3a5ff commit e79e967
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ETLReports/Program.vb
Original file line number Diff line number Diff line change
Expand Up @@ -2086,7 +2086,7 @@ Module Program
Console.WriteLine("--outfolder:<.CSV Report OUTPUTFOLDER> (REQUIRED)")
Console.WriteLine("--measure - Show start time, end time and count of events being processed in console")
Console.WriteLine("")
Console.WriteLine("Example:")
Console.WriteLine("Examples:")
Console.WriteLine("ETLReports.exe --infile:c:\trace.etl --processor:processes --outfolder:c:\")
Console.WriteLine("ETLReports.exe --infile:c:\trace.etl --processor:diskio --outfolder:c:\")
Console.WriteLine("ETLReports.exe --infile:'c:\trace with space in name.etl' --processor:cpusample --outfolder:'c:\'")
Expand Down
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,27 @@ Produces various reports, usually in .csv format from Windows Event .etl log fil
Program will open and read a .etl trace and produce .csv formatted output to console based on the --processor: selected.

Accepted arguments:

h | -h | /h | help | -help | /help | ? | -? | /? Shows this help screen

--infile:<ETLFILENAME> (REQUIRED)

--processor:[processes tasks gpos winlogon pnp services hardfaults diskio fileio providerinfo minifilter minifiltersummary cpusample cpusamplenoidle bootphases processzombies] (REQUIRED)

--ms:<MILLISECONDS> - Used with minifilter processor to specify how many milliseconds above to save events

--outfolder:<.CSV Report OUTPUTFOLDER> (REQUIRED)

--measure - Show start time, end time and count of events being processed in console

Example:
## Examples

ETLReports.exe --infile:c:\trace.etl --processor:processes --outfolder:c:\

ETLReports.exe --infile:c:\trace.etl --processor:diskio --outfolder:c:\

ETLReports.exe --infile:'c:\trace with space in name.etl' --processor:cpusample --outfolder:'c:\'

ETLReports.exe --infile:c:\trace.etl --processor:minifilter --ms:15 --measure --outfolder:c:\

* Only 1 <processor> can be specified each run. Run multiple times for more reports.

0 comments on commit e79e967

Please sign in to comment.