├── .gitignore ├── CODE_OF_CONDUCT.md ├── EventTracing v1 to v2 Migration Guide.md ├── LICENSE ├── README.md ├── SECURITY.md ├── v1 ├── BootTimeDiff │ ├── BootTimeDiff.csproj │ ├── Program.cs │ └── README.md ├── CheckForAppCrash │ ├── CheckForAppCrash.csproj │ ├── Program.cs │ └── README.md ├── CountProcesses │ ├── CountProcesses.csproj │ ├── Program.cs │ └── README.md ├── CyclesPerInstruction │ ├── CyclesPerInstruction.csproj │ ├── Program.cs │ └── README.md ├── FanNoiseSignal_Checker │ ├── FanNoiseSignal_Checker.csproj │ ├── Program.cs │ └── README.md ├── FindZombieProcesses │ ├── FindZombieProcesses.csproj │ ├── Program.cs │ └── README.md ├── GetCpuSampleDuration │ ├── GetCpuSampleDuration.csproj │ ├── Program.cs │ └── README.md ├── OutstandingHandleCountByProcess │ ├── OutstandingHandleCountByProcess.csproj │ ├── Program.cs │ └── README.md ├── PotentialDelayLoads │ ├── PotentialDelayLoads.csproj │ ├── Program.cs │ └── README.md ├── ResidentSetSnapshotsToXml │ ├── Program.cs │ ├── README.md │ └── ResidentSetSnapshotsToXml.csproj ├── ServicesDiff │ ├── Program.cs │ ├── README.md │ └── ServicesDiff.csproj └── samples.sln └── v2 ├── BootTimeDiff ├── BootTimeDiff.csproj ├── Program.cs └── README.md ├── CheckForAppCrash ├── CheckForAppCrash.csproj ├── Program.cs └── README.md ├── CountProcesses ├── CountProcesses.csproj ├── Program.cs └── README.md ├── CyclesPerInstruction ├── CyclesPerInstruction.csproj ├── Program.cs └── README.md ├── FanNoiseSignal_Checker ├── FanNoiseSignal_Checker.csproj ├── Program.cs └── README.md ├── FindZombieProcesses ├── FindZombieProcesses.csproj ├── Program.cs └── README.md ├── GetCpuSampleDuration ├── GetCpuSampleDuration.csproj ├── Program.cs └── README.md ├── OutstandingHandleCountByProcess ├── OutstandingHandleCountByProcess.csproj ├── Program.cs └── README.md ├── PotentialDelayLoads ├── PotentialDelayLoads.csproj ├── Program.cs └── README.md ├── ResidentSetSnapshotsToXml ├── Program.cs ├── README.md └── ResidentSetSnapshotsToXml.csproj ├── ServicesDiff ├── Program.cs ├── README.md └── ServicesDiff.csproj └── samples.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /EventTracing v1 to v2 Migration Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/EventTracing v1 to v2 Migration Guide.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /v1/BootTimeDiff/BootTimeDiff.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/BootTimeDiff/BootTimeDiff.csproj -------------------------------------------------------------------------------- /v1/BootTimeDiff/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/BootTimeDiff/Program.cs -------------------------------------------------------------------------------- /v1/BootTimeDiff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/BootTimeDiff/README.md -------------------------------------------------------------------------------- /v1/CheckForAppCrash/CheckForAppCrash.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/CheckForAppCrash/CheckForAppCrash.csproj -------------------------------------------------------------------------------- /v1/CheckForAppCrash/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/CheckForAppCrash/Program.cs -------------------------------------------------------------------------------- /v1/CheckForAppCrash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/CheckForAppCrash/README.md -------------------------------------------------------------------------------- /v1/CountProcesses/CountProcesses.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/CountProcesses/CountProcesses.csproj -------------------------------------------------------------------------------- /v1/CountProcesses/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/CountProcesses/Program.cs -------------------------------------------------------------------------------- /v1/CountProcesses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/CountProcesses/README.md -------------------------------------------------------------------------------- /v1/CyclesPerInstruction/CyclesPerInstruction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/CyclesPerInstruction/CyclesPerInstruction.csproj -------------------------------------------------------------------------------- /v1/CyclesPerInstruction/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/CyclesPerInstruction/Program.cs -------------------------------------------------------------------------------- /v1/CyclesPerInstruction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/CyclesPerInstruction/README.md -------------------------------------------------------------------------------- /v1/FanNoiseSignal_Checker/FanNoiseSignal_Checker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/FanNoiseSignal_Checker/FanNoiseSignal_Checker.csproj -------------------------------------------------------------------------------- /v1/FanNoiseSignal_Checker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/FanNoiseSignal_Checker/Program.cs -------------------------------------------------------------------------------- /v1/FanNoiseSignal_Checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/FanNoiseSignal_Checker/README.md -------------------------------------------------------------------------------- /v1/FindZombieProcesses/FindZombieProcesses.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/FindZombieProcesses/FindZombieProcesses.csproj -------------------------------------------------------------------------------- /v1/FindZombieProcesses/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/FindZombieProcesses/Program.cs -------------------------------------------------------------------------------- /v1/FindZombieProcesses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/FindZombieProcesses/README.md -------------------------------------------------------------------------------- /v1/GetCpuSampleDuration/GetCpuSampleDuration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/GetCpuSampleDuration/GetCpuSampleDuration.csproj -------------------------------------------------------------------------------- /v1/GetCpuSampleDuration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/GetCpuSampleDuration/Program.cs -------------------------------------------------------------------------------- /v1/GetCpuSampleDuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/GetCpuSampleDuration/README.md -------------------------------------------------------------------------------- /v1/OutstandingHandleCountByProcess/OutstandingHandleCountByProcess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/OutstandingHandleCountByProcess/OutstandingHandleCountByProcess.csproj -------------------------------------------------------------------------------- /v1/OutstandingHandleCountByProcess/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/OutstandingHandleCountByProcess/Program.cs -------------------------------------------------------------------------------- /v1/OutstandingHandleCountByProcess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/OutstandingHandleCountByProcess/README.md -------------------------------------------------------------------------------- /v1/PotentialDelayLoads/PotentialDelayLoads.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/PotentialDelayLoads/PotentialDelayLoads.csproj -------------------------------------------------------------------------------- /v1/PotentialDelayLoads/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/PotentialDelayLoads/Program.cs -------------------------------------------------------------------------------- /v1/PotentialDelayLoads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/PotentialDelayLoads/README.md -------------------------------------------------------------------------------- /v1/ResidentSetSnapshotsToXml/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/ResidentSetSnapshotsToXml/Program.cs -------------------------------------------------------------------------------- /v1/ResidentSetSnapshotsToXml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/ResidentSetSnapshotsToXml/README.md -------------------------------------------------------------------------------- /v1/ResidentSetSnapshotsToXml/ResidentSetSnapshotsToXml.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/ResidentSetSnapshotsToXml/ResidentSetSnapshotsToXml.csproj -------------------------------------------------------------------------------- /v1/ServicesDiff/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/ServicesDiff/Program.cs -------------------------------------------------------------------------------- /v1/ServicesDiff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/ServicesDiff/README.md -------------------------------------------------------------------------------- /v1/ServicesDiff/ServicesDiff.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/ServicesDiff/ServicesDiff.csproj -------------------------------------------------------------------------------- /v1/samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v1/samples.sln -------------------------------------------------------------------------------- /v2/BootTimeDiff/BootTimeDiff.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/BootTimeDiff/BootTimeDiff.csproj -------------------------------------------------------------------------------- /v2/BootTimeDiff/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/BootTimeDiff/Program.cs -------------------------------------------------------------------------------- /v2/BootTimeDiff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/BootTimeDiff/README.md -------------------------------------------------------------------------------- /v2/CheckForAppCrash/CheckForAppCrash.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/CheckForAppCrash/CheckForAppCrash.csproj -------------------------------------------------------------------------------- /v2/CheckForAppCrash/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/CheckForAppCrash/Program.cs -------------------------------------------------------------------------------- /v2/CheckForAppCrash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/CheckForAppCrash/README.md -------------------------------------------------------------------------------- /v2/CountProcesses/CountProcesses.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/CountProcesses/CountProcesses.csproj -------------------------------------------------------------------------------- /v2/CountProcesses/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/CountProcesses/Program.cs -------------------------------------------------------------------------------- /v2/CountProcesses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/CountProcesses/README.md -------------------------------------------------------------------------------- /v2/CyclesPerInstruction/CyclesPerInstruction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/CyclesPerInstruction/CyclesPerInstruction.csproj -------------------------------------------------------------------------------- /v2/CyclesPerInstruction/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/CyclesPerInstruction/Program.cs -------------------------------------------------------------------------------- /v2/CyclesPerInstruction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/CyclesPerInstruction/README.md -------------------------------------------------------------------------------- /v2/FanNoiseSignal_Checker/FanNoiseSignal_Checker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/FanNoiseSignal_Checker/FanNoiseSignal_Checker.csproj -------------------------------------------------------------------------------- /v2/FanNoiseSignal_Checker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/FanNoiseSignal_Checker/Program.cs -------------------------------------------------------------------------------- /v2/FanNoiseSignal_Checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/FanNoiseSignal_Checker/README.md -------------------------------------------------------------------------------- /v2/FindZombieProcesses/FindZombieProcesses.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/FindZombieProcesses/FindZombieProcesses.csproj -------------------------------------------------------------------------------- /v2/FindZombieProcesses/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/FindZombieProcesses/Program.cs -------------------------------------------------------------------------------- /v2/FindZombieProcesses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/FindZombieProcesses/README.md -------------------------------------------------------------------------------- /v2/GetCpuSampleDuration/GetCpuSampleDuration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/GetCpuSampleDuration/GetCpuSampleDuration.csproj -------------------------------------------------------------------------------- /v2/GetCpuSampleDuration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/GetCpuSampleDuration/Program.cs -------------------------------------------------------------------------------- /v2/GetCpuSampleDuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/GetCpuSampleDuration/README.md -------------------------------------------------------------------------------- /v2/OutstandingHandleCountByProcess/OutstandingHandleCountByProcess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/OutstandingHandleCountByProcess/OutstandingHandleCountByProcess.csproj -------------------------------------------------------------------------------- /v2/OutstandingHandleCountByProcess/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/OutstandingHandleCountByProcess/Program.cs -------------------------------------------------------------------------------- /v2/OutstandingHandleCountByProcess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/OutstandingHandleCountByProcess/README.md -------------------------------------------------------------------------------- /v2/PotentialDelayLoads/PotentialDelayLoads.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/PotentialDelayLoads/PotentialDelayLoads.csproj -------------------------------------------------------------------------------- /v2/PotentialDelayLoads/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/PotentialDelayLoads/Program.cs -------------------------------------------------------------------------------- /v2/PotentialDelayLoads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/PotentialDelayLoads/README.md -------------------------------------------------------------------------------- /v2/ResidentSetSnapshotsToXml/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/ResidentSetSnapshotsToXml/Program.cs -------------------------------------------------------------------------------- /v2/ResidentSetSnapshotsToXml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/ResidentSetSnapshotsToXml/README.md -------------------------------------------------------------------------------- /v2/ResidentSetSnapshotsToXml/ResidentSetSnapshotsToXml.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/ResidentSetSnapshotsToXml/ResidentSetSnapshotsToXml.csproj -------------------------------------------------------------------------------- /v2/ServicesDiff/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/ServicesDiff/Program.cs -------------------------------------------------------------------------------- /v2/ServicesDiff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/ServicesDiff/README.md -------------------------------------------------------------------------------- /v2/ServicesDiff/ServicesDiff.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/ServicesDiff/ServicesDiff.csproj -------------------------------------------------------------------------------- /v2/samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/eventtracing-processing-samples/HEAD/v2/samples.sln --------------------------------------------------------------------------------