├── .gitignore ├── Counters ├── Counters.RuntimeClient │ ├── CounterHelpers.cs │ ├── CounterMonitor.cs │ ├── Counters.RuntimeClient.csproj │ └── CsvCounterListener.cs ├── CountersWebApp │ ├── Controllers │ │ └── RequestController.cs │ ├── Counters │ │ ├── RequestCountersEventSource.cs │ │ └── RequestMetricsMiddleware.cs │ ├── CountersWebApp.csproj │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── EventPipeCounters.sln ├── Microsoft.Diagnostics.Tools.RuntimeClient.dll ├── Microsoft.Diagnostics.Tools.RuntimeClient.xml └── SimpleCounters │ ├── Program.cs │ └── SimpleCounters.csproj ├── Events ├── AllocationTickProfiler │ ├── AllocationTickMemoryProfiler.cs │ ├── AllocationTickProfiler.csproj │ ├── AllocationTickProfiler.zip │ ├── ProcessAllocationInfo.cs │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── ClrEtw.sln ├── ConsoleListener │ ├── App.config │ ├── ConsoleListener.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── CpuSamplingProfiler │ ├── ConsoleRenderer.cs │ ├── CpuSampleProfilerBase.cs │ ├── CpuSamplingProfiler.csproj │ ├── EtlCpuSampleProfiler.cs │ ├── ICpuSampleProfiler.cs │ ├── IRenderer.cs │ ├── LiveCpuSampleProfiler.cs │ ├── MergedSymbolicStacks.cs │ ├── ProfilingPermission.cs │ ├── Program.cs │ └── RendererHelpers.cs ├── EventPipeGcLogger │ ├── EventPipeGcLogger.csproj │ └── Program.cs ├── Events.Shared │ ├── ActivityHelpers.cs │ ├── AddressStack.cs │ ├── AllocationTickArgs.cs │ ├── ClrEventArgs.cs │ ├── ClrEventsManager.cs │ ├── ContentionArgs.cs │ ├── ContentionEventsManager.cs │ ├── ContentionInfo.cs │ ├── ContentionInfoStore.cs │ ├── EventFilter.cs │ ├── EventPipeUnresolvedStack.cs │ ├── EventSourcePayload.cs │ ├── Events.Shared.csproj │ ├── ExceptionArgs.cs │ ├── FinalizeArgs.cs │ ├── GarbageCollectionArgs.cs │ ├── HeapDetails.cs │ ├── MethodInfo.cs │ ├── MethodStore.cs │ ├── NetworkEventArgs.cs │ ├── NetworkEventsManager.cs │ ├── ProcessStackMapping.cs │ ├── ProcessTypeMapping.cs │ ├── ThreadPoolStarvationArgs.cs │ └── TypesInfo.cs ├── GcLog │ ├── EtwGcLog.cs │ ├── EventPipeGcLog.cs │ ├── GCDetails.cs │ ├── GCEventListener.cs │ ├── GCInfo.cs │ ├── GCLog.csv │ ├── GCLogTemplate.xlsx │ ├── GcLog.csproj │ ├── GcLogBase.cs │ ├── IGcLog.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── GcLogger │ ├── App.config │ ├── GcLogger.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── GcPipes │ └── GcPipes.csproj ├── Microsoft.Diagnostics.NETCore.Client │ ├── AssemblyInfo.cs │ ├── BinaryWriterExtensions.cs │ ├── DiagnosticsClient │ │ ├── DiagnosticsClient.cs │ │ ├── DiagnosticsClientExceptions.cs │ │ ├── DumpType.cs │ │ ├── EventPipeProvider.cs │ │ ├── EventPipeSession.cs │ │ ├── EventPipeSessionConfiguration.cs │ │ └── WriteDumpFlags.cs │ ├── DiagnosticsIpc │ │ ├── ExposedSocketNetworkStream.cs │ │ ├── IpcAdvertise.cs │ │ ├── IpcClient.cs │ │ ├── IpcCommands.cs │ │ ├── IpcEndpointConfig.cs │ │ ├── IpcHeader.cs │ │ ├── IpcMessage.cs │ │ ├── IpcResponse.cs │ │ ├── IpcServerTransport.cs │ │ ├── IpcSocket.cs │ │ ├── IpcTcpSocketEndPoint.cs │ │ ├── IpcTransport.cs │ │ ├── IpcUnixDomainSocket.cs │ │ ├── IpcUnixDomainSocketEndPoint.cs │ │ ├── ProcessEnvironment.cs │ │ └── ProcessInfo.cs │ ├── DiagnosticsServerRouter │ │ ├── DiagnosticsServerRouterFactory.cs │ │ └── DiagnosticsServerRouterRunner.cs │ ├── HandleableCollection.cs │ ├── IpcHelpers.cs │ ├── Microsoft.Diagnostics.NETCore.Client.csproj │ ├── NativeMethods.cs │ ├── ReversedServer │ │ ├── IpcEndpointInfo.cs │ │ └── ReversedDiagnosticsServer.cs │ └── StreamExtensions.cs ├── Microsoft.Diagnostics.Tools.RuntimeClient.dll ├── Microsoft.Diagnostics.Tools.RuntimeClient.xml ├── NaiveListener │ ├── App.config │ ├── NaiveListener.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── NativeEventListener │ ├── BlockParser.cpp │ ├── BlockParser.h │ ├── DiagnosticsClient.cpp │ ├── DiagnosticsClient.h │ ├── DiagnosticsProtocol.cpp │ ├── DiagnosticsProtocol.h │ ├── EventParser.cpp │ ├── EventPipeSession.cpp │ ├── EventPipeSession.h │ ├── FileRecorder.cpp │ ├── FileRecorder.h │ ├── GcDumpSession.cpp │ ├── GcDumpSession.h │ ├── GcDumpState.cpp │ ├── GcDumpState.h │ ├── IIpcEndpoint.h │ ├── IIpcRecorder.h │ ├── IpcEndpoint.cpp │ ├── IpcEndpoint.h │ ├── LiveObject.cpp │ ├── LiveObject.h │ ├── MetadataParser.cpp │ ├── NativeEventListener.cpp │ ├── NativeEventListener.vcxproj │ ├── NativeEventListener.vcxproj.filters │ ├── NettraceFormat.h │ ├── PidEndpoint.cpp │ ├── PidEndpoint.h │ ├── RecordedEndpoint.cpp │ ├── RecordedEndpoint.h │ ├── SequencePointParser.cpp │ ├── StackParser.cpp │ ├── TypeInfo.cpp │ └── TypeInfo.h ├── SampledObjectAllocationProfiler │ ├── AddressStack.cs │ ├── MethodInfo.cs │ ├── MethodStore.cs │ ├── NativeReferences │ │ ├── dbghelp.dll │ │ ├── readme.txt │ │ └── symsrv.dll │ ├── PerProcessProfilingState.cs │ ├── ProcessAllocations.cs │ ├── ProcessTypeMapping.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SampledObjectAllocationMemoryProfiler.cs │ └── SampledObjectAllocationProfiler.csproj ├── Simulator │ ├── App.config │ ├── ContentionAction.cs │ ├── ExceptionAction.cs │ ├── IOThreadPoolAction.cs │ ├── MultiRunner.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RandomAllocationAction.cs │ ├── Simulator.csproj │ └── ThreadPoolAction.cs ├── dotnet-activity │ ├── Program.cs │ └── dotnet-activity.csproj ├── dotnet-http │ ├── LICENSE │ ├── Program.cs │ ├── README.md │ └── dotnet-http.csproj ├── dotnet-wait │ ├── LICENSE │ ├── Program.cs │ ├── README.md │ └── dotnet-wait.csproj └── pinfo │ ├── Program.cs │ └── pinfo.csproj ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/.gitignore -------------------------------------------------------------------------------- /Counters/Counters.RuntimeClient/CounterHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/Counters.RuntimeClient/CounterHelpers.cs -------------------------------------------------------------------------------- /Counters/Counters.RuntimeClient/CounterMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/Counters.RuntimeClient/CounterMonitor.cs -------------------------------------------------------------------------------- /Counters/Counters.RuntimeClient/Counters.RuntimeClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/Counters.RuntimeClient/Counters.RuntimeClient.csproj -------------------------------------------------------------------------------- /Counters/Counters.RuntimeClient/CsvCounterListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/Counters.RuntimeClient/CsvCounterListener.cs -------------------------------------------------------------------------------- /Counters/CountersWebApp/Controllers/RequestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/CountersWebApp/Controllers/RequestController.cs -------------------------------------------------------------------------------- /Counters/CountersWebApp/Counters/RequestCountersEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/CountersWebApp/Counters/RequestCountersEventSource.cs -------------------------------------------------------------------------------- /Counters/CountersWebApp/Counters/RequestMetricsMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/CountersWebApp/Counters/RequestMetricsMiddleware.cs -------------------------------------------------------------------------------- /Counters/CountersWebApp/CountersWebApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/CountersWebApp/CountersWebApp.csproj -------------------------------------------------------------------------------- /Counters/CountersWebApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/CountersWebApp/Program.cs -------------------------------------------------------------------------------- /Counters/CountersWebApp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/CountersWebApp/Startup.cs -------------------------------------------------------------------------------- /Counters/CountersWebApp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/CountersWebApp/appsettings.Development.json -------------------------------------------------------------------------------- /Counters/CountersWebApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/CountersWebApp/appsettings.json -------------------------------------------------------------------------------- /Counters/EventPipeCounters.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/EventPipeCounters.sln -------------------------------------------------------------------------------- /Counters/Microsoft.Diagnostics.Tools.RuntimeClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/Microsoft.Diagnostics.Tools.RuntimeClient.dll -------------------------------------------------------------------------------- /Counters/Microsoft.Diagnostics.Tools.RuntimeClient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/Microsoft.Diagnostics.Tools.RuntimeClient.xml -------------------------------------------------------------------------------- /Counters/SimpleCounters/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/SimpleCounters/Program.cs -------------------------------------------------------------------------------- /Counters/SimpleCounters/SimpleCounters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Counters/SimpleCounters/SimpleCounters.csproj -------------------------------------------------------------------------------- /Events/AllocationTickProfiler/AllocationTickMemoryProfiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/AllocationTickProfiler/AllocationTickMemoryProfiler.cs -------------------------------------------------------------------------------- /Events/AllocationTickProfiler/AllocationTickProfiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/AllocationTickProfiler/AllocationTickProfiler.csproj -------------------------------------------------------------------------------- /Events/AllocationTickProfiler/AllocationTickProfiler.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/AllocationTickProfiler/AllocationTickProfiler.zip -------------------------------------------------------------------------------- /Events/AllocationTickProfiler/ProcessAllocationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/AllocationTickProfiler/ProcessAllocationInfo.cs -------------------------------------------------------------------------------- /Events/AllocationTickProfiler/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/AllocationTickProfiler/Program.cs -------------------------------------------------------------------------------- /Events/AllocationTickProfiler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/AllocationTickProfiler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Events/ClrEtw.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/ClrEtw.sln -------------------------------------------------------------------------------- /Events/ConsoleListener/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/ConsoleListener/App.config -------------------------------------------------------------------------------- /Events/ConsoleListener/ConsoleListener.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/ConsoleListener/ConsoleListener.csproj -------------------------------------------------------------------------------- /Events/ConsoleListener/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/ConsoleListener/Program.cs -------------------------------------------------------------------------------- /Events/ConsoleListener/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/ConsoleListener/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Events/ConsoleListener/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/ConsoleListener/packages.config -------------------------------------------------------------------------------- /Events/CpuSamplingProfiler/ConsoleRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/CpuSamplingProfiler/ConsoleRenderer.cs -------------------------------------------------------------------------------- /Events/CpuSamplingProfiler/CpuSampleProfilerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/CpuSamplingProfiler/CpuSampleProfilerBase.cs -------------------------------------------------------------------------------- /Events/CpuSamplingProfiler/CpuSamplingProfiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/CpuSamplingProfiler/CpuSamplingProfiler.csproj -------------------------------------------------------------------------------- /Events/CpuSamplingProfiler/EtlCpuSampleProfiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/CpuSamplingProfiler/EtlCpuSampleProfiler.cs -------------------------------------------------------------------------------- /Events/CpuSamplingProfiler/ICpuSampleProfiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/CpuSamplingProfiler/ICpuSampleProfiler.cs -------------------------------------------------------------------------------- /Events/CpuSamplingProfiler/IRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/CpuSamplingProfiler/IRenderer.cs -------------------------------------------------------------------------------- /Events/CpuSamplingProfiler/LiveCpuSampleProfiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/CpuSamplingProfiler/LiveCpuSampleProfiler.cs -------------------------------------------------------------------------------- /Events/CpuSamplingProfiler/MergedSymbolicStacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/CpuSamplingProfiler/MergedSymbolicStacks.cs -------------------------------------------------------------------------------- /Events/CpuSamplingProfiler/ProfilingPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/CpuSamplingProfiler/ProfilingPermission.cs -------------------------------------------------------------------------------- /Events/CpuSamplingProfiler/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/CpuSamplingProfiler/Program.cs -------------------------------------------------------------------------------- /Events/CpuSamplingProfiler/RendererHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/CpuSamplingProfiler/RendererHelpers.cs -------------------------------------------------------------------------------- /Events/EventPipeGcLogger/EventPipeGcLogger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/EventPipeGcLogger/EventPipeGcLogger.csproj -------------------------------------------------------------------------------- /Events/EventPipeGcLogger/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/EventPipeGcLogger/Program.cs -------------------------------------------------------------------------------- /Events/Events.Shared/ActivityHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/ActivityHelpers.cs -------------------------------------------------------------------------------- /Events/Events.Shared/AddressStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/AddressStack.cs -------------------------------------------------------------------------------- /Events/Events.Shared/AllocationTickArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/AllocationTickArgs.cs -------------------------------------------------------------------------------- /Events/Events.Shared/ClrEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/ClrEventArgs.cs -------------------------------------------------------------------------------- /Events/Events.Shared/ClrEventsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/ClrEventsManager.cs -------------------------------------------------------------------------------- /Events/Events.Shared/ContentionArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/ContentionArgs.cs -------------------------------------------------------------------------------- /Events/Events.Shared/ContentionEventsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/ContentionEventsManager.cs -------------------------------------------------------------------------------- /Events/Events.Shared/ContentionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/ContentionInfo.cs -------------------------------------------------------------------------------- /Events/Events.Shared/ContentionInfoStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/ContentionInfoStore.cs -------------------------------------------------------------------------------- /Events/Events.Shared/EventFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/EventFilter.cs -------------------------------------------------------------------------------- /Events/Events.Shared/EventPipeUnresolvedStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/EventPipeUnresolvedStack.cs -------------------------------------------------------------------------------- /Events/Events.Shared/EventSourcePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/EventSourcePayload.cs -------------------------------------------------------------------------------- /Events/Events.Shared/Events.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/Events.Shared.csproj -------------------------------------------------------------------------------- /Events/Events.Shared/ExceptionArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/ExceptionArgs.cs -------------------------------------------------------------------------------- /Events/Events.Shared/FinalizeArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/FinalizeArgs.cs -------------------------------------------------------------------------------- /Events/Events.Shared/GarbageCollectionArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/GarbageCollectionArgs.cs -------------------------------------------------------------------------------- /Events/Events.Shared/HeapDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/HeapDetails.cs -------------------------------------------------------------------------------- /Events/Events.Shared/MethodInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/MethodInfo.cs -------------------------------------------------------------------------------- /Events/Events.Shared/MethodStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/MethodStore.cs -------------------------------------------------------------------------------- /Events/Events.Shared/NetworkEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/NetworkEventArgs.cs -------------------------------------------------------------------------------- /Events/Events.Shared/NetworkEventsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/NetworkEventsManager.cs -------------------------------------------------------------------------------- /Events/Events.Shared/ProcessStackMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/ProcessStackMapping.cs -------------------------------------------------------------------------------- /Events/Events.Shared/ProcessTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/ProcessTypeMapping.cs -------------------------------------------------------------------------------- /Events/Events.Shared/ThreadPoolStarvationArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/ThreadPoolStarvationArgs.cs -------------------------------------------------------------------------------- /Events/Events.Shared/TypesInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Events.Shared/TypesInfo.cs -------------------------------------------------------------------------------- /Events/GcLog/EtwGcLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcLog/EtwGcLog.cs -------------------------------------------------------------------------------- /Events/GcLog/EventPipeGcLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcLog/EventPipeGcLog.cs -------------------------------------------------------------------------------- /Events/GcLog/GCDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcLog/GCDetails.cs -------------------------------------------------------------------------------- /Events/GcLog/GCEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcLog/GCEventListener.cs -------------------------------------------------------------------------------- /Events/GcLog/GCInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcLog/GCInfo.cs -------------------------------------------------------------------------------- /Events/GcLog/GCLog.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcLog/GCLog.csv -------------------------------------------------------------------------------- /Events/GcLog/GCLogTemplate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcLog/GCLogTemplate.xlsx -------------------------------------------------------------------------------- /Events/GcLog/GcLog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcLog/GcLog.csproj -------------------------------------------------------------------------------- /Events/GcLog/GcLogBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcLog/GcLogBase.cs -------------------------------------------------------------------------------- /Events/GcLog/IGcLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcLog/IGcLog.cs -------------------------------------------------------------------------------- /Events/GcLog/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcLog/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Events/GcLog/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcLog/packages.config -------------------------------------------------------------------------------- /Events/GcLogger/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcLogger/App.config -------------------------------------------------------------------------------- /Events/GcLogger/GcLogger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcLogger/GcLogger.csproj -------------------------------------------------------------------------------- /Events/GcLogger/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcLogger/Program.cs -------------------------------------------------------------------------------- /Events/GcLogger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcLogger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Events/GcPipes/GcPipes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/GcPipes/GcPipes.csproj -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/AssemblyInfo.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/BinaryWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/BinaryWriterExtensions.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsClient/DiagnosticsClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsClient/DiagnosticsClient.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsClient/DiagnosticsClientExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsClient/DiagnosticsClientExceptions.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsClient/DumpType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsClient/DumpType.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsClient/EventPipeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsClient/EventPipeProvider.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsClient/EventPipeSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsClient/EventPipeSession.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsClient/EventPipeSessionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsClient/EventPipeSessionConfiguration.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsClient/WriteDumpFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsClient/WriteDumpFlags.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/ExposedSocketNetworkStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/ExposedSocketNetworkStream.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcAdvertise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcAdvertise.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcClient.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcCommands.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcEndpointConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcEndpointConfig.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcHeader.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcMessage.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcResponse.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcServerTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcServerTransport.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcSocket.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcTcpSocketEndPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcTcpSocketEndPoint.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcTransport.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcUnixDomainSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcUnixDomainSocket.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcUnixDomainSocketEndPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/IpcUnixDomainSocketEndPoint.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/ProcessEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/ProcessEnvironment.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/ProcessInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsIpc/ProcessInfo.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsServerRouter/DiagnosticsServerRouterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsServerRouter/DiagnosticsServerRouterFactory.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsServerRouter/DiagnosticsServerRouterRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/DiagnosticsServerRouter/DiagnosticsServerRouterRunner.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/HandleableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/HandleableCollection.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/IpcHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/IpcHelpers.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/Microsoft.Diagnostics.NETCore.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/Microsoft.Diagnostics.NETCore.Client.csproj -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/NativeMethods.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/ReversedServer/IpcEndpointInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/ReversedServer/IpcEndpointInfo.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/ReversedServer/ReversedDiagnosticsServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/ReversedServer/ReversedDiagnosticsServer.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.NETCore.Client/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.NETCore.Client/StreamExtensions.cs -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.Tools.RuntimeClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.Tools.RuntimeClient.dll -------------------------------------------------------------------------------- /Events/Microsoft.Diagnostics.Tools.RuntimeClient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Microsoft.Diagnostics.Tools.RuntimeClient.xml -------------------------------------------------------------------------------- /Events/NaiveListener/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NaiveListener/App.config -------------------------------------------------------------------------------- /Events/NaiveListener/NaiveListener.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NaiveListener/NaiveListener.csproj -------------------------------------------------------------------------------- /Events/NaiveListener/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NaiveListener/Program.cs -------------------------------------------------------------------------------- /Events/NaiveListener/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NaiveListener/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Events/NaiveListener/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NaiveListener/packages.config -------------------------------------------------------------------------------- /Events/NativeEventListener/BlockParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/BlockParser.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/BlockParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/BlockParser.h -------------------------------------------------------------------------------- /Events/NativeEventListener/DiagnosticsClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/DiagnosticsClient.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/DiagnosticsClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/DiagnosticsClient.h -------------------------------------------------------------------------------- /Events/NativeEventListener/DiagnosticsProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/DiagnosticsProtocol.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/DiagnosticsProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/DiagnosticsProtocol.h -------------------------------------------------------------------------------- /Events/NativeEventListener/EventParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/EventParser.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/EventPipeSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/EventPipeSession.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/EventPipeSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/EventPipeSession.h -------------------------------------------------------------------------------- /Events/NativeEventListener/FileRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/FileRecorder.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/FileRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/FileRecorder.h -------------------------------------------------------------------------------- /Events/NativeEventListener/GcDumpSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/GcDumpSession.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/GcDumpSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/GcDumpSession.h -------------------------------------------------------------------------------- /Events/NativeEventListener/GcDumpState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/GcDumpState.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/GcDumpState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/GcDumpState.h -------------------------------------------------------------------------------- /Events/NativeEventListener/IIpcEndpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/IIpcEndpoint.h -------------------------------------------------------------------------------- /Events/NativeEventListener/IIpcRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/IIpcRecorder.h -------------------------------------------------------------------------------- /Events/NativeEventListener/IpcEndpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/IpcEndpoint.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/IpcEndpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/IpcEndpoint.h -------------------------------------------------------------------------------- /Events/NativeEventListener/LiveObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/LiveObject.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/LiveObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/LiveObject.h -------------------------------------------------------------------------------- /Events/NativeEventListener/MetadataParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/MetadataParser.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/NativeEventListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/NativeEventListener.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/NativeEventListener.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/NativeEventListener.vcxproj -------------------------------------------------------------------------------- /Events/NativeEventListener/NativeEventListener.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/NativeEventListener.vcxproj.filters -------------------------------------------------------------------------------- /Events/NativeEventListener/NettraceFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/NettraceFormat.h -------------------------------------------------------------------------------- /Events/NativeEventListener/PidEndpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/PidEndpoint.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/PidEndpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/PidEndpoint.h -------------------------------------------------------------------------------- /Events/NativeEventListener/RecordedEndpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/RecordedEndpoint.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/RecordedEndpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/RecordedEndpoint.h -------------------------------------------------------------------------------- /Events/NativeEventListener/SequencePointParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/SequencePointParser.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/StackParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/StackParser.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/TypeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/TypeInfo.cpp -------------------------------------------------------------------------------- /Events/NativeEventListener/TypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/NativeEventListener/TypeInfo.h -------------------------------------------------------------------------------- /Events/SampledObjectAllocationProfiler/AddressStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/SampledObjectAllocationProfiler/AddressStack.cs -------------------------------------------------------------------------------- /Events/SampledObjectAllocationProfiler/MethodInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/SampledObjectAllocationProfiler/MethodInfo.cs -------------------------------------------------------------------------------- /Events/SampledObjectAllocationProfiler/MethodStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/SampledObjectAllocationProfiler/MethodStore.cs -------------------------------------------------------------------------------- /Events/SampledObjectAllocationProfiler/NativeReferences/dbghelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/SampledObjectAllocationProfiler/NativeReferences/dbghelp.dll -------------------------------------------------------------------------------- /Events/SampledObjectAllocationProfiler/NativeReferences/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/SampledObjectAllocationProfiler/NativeReferences/readme.txt -------------------------------------------------------------------------------- /Events/SampledObjectAllocationProfiler/NativeReferences/symsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/SampledObjectAllocationProfiler/NativeReferences/symsrv.dll -------------------------------------------------------------------------------- /Events/SampledObjectAllocationProfiler/PerProcessProfilingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/SampledObjectAllocationProfiler/PerProcessProfilingState.cs -------------------------------------------------------------------------------- /Events/SampledObjectAllocationProfiler/ProcessAllocations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/SampledObjectAllocationProfiler/ProcessAllocations.cs -------------------------------------------------------------------------------- /Events/SampledObjectAllocationProfiler/ProcessTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/SampledObjectAllocationProfiler/ProcessTypeMapping.cs -------------------------------------------------------------------------------- /Events/SampledObjectAllocationProfiler/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/SampledObjectAllocationProfiler/Program.cs -------------------------------------------------------------------------------- /Events/SampledObjectAllocationProfiler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/SampledObjectAllocationProfiler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Events/SampledObjectAllocationProfiler/SampledObjectAllocationMemoryProfiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/SampledObjectAllocationProfiler/SampledObjectAllocationMemoryProfiler.cs -------------------------------------------------------------------------------- /Events/SampledObjectAllocationProfiler/SampledObjectAllocationProfiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/SampledObjectAllocationProfiler/SampledObjectAllocationProfiler.csproj -------------------------------------------------------------------------------- /Events/Simulator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Simulator/App.config -------------------------------------------------------------------------------- /Events/Simulator/ContentionAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Simulator/ContentionAction.cs -------------------------------------------------------------------------------- /Events/Simulator/ExceptionAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Simulator/ExceptionAction.cs -------------------------------------------------------------------------------- /Events/Simulator/IOThreadPoolAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Simulator/IOThreadPoolAction.cs -------------------------------------------------------------------------------- /Events/Simulator/MultiRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Simulator/MultiRunner.cs -------------------------------------------------------------------------------- /Events/Simulator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Simulator/Program.cs -------------------------------------------------------------------------------- /Events/Simulator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Simulator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Events/Simulator/RandomAllocationAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Simulator/RandomAllocationAction.cs -------------------------------------------------------------------------------- /Events/Simulator/Simulator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Simulator/Simulator.csproj -------------------------------------------------------------------------------- /Events/Simulator/ThreadPoolAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/Simulator/ThreadPoolAction.cs -------------------------------------------------------------------------------- /Events/dotnet-activity/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/dotnet-activity/Program.cs -------------------------------------------------------------------------------- /Events/dotnet-activity/dotnet-activity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/dotnet-activity/dotnet-activity.csproj -------------------------------------------------------------------------------- /Events/dotnet-http/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/dotnet-http/LICENSE -------------------------------------------------------------------------------- /Events/dotnet-http/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/dotnet-http/Program.cs -------------------------------------------------------------------------------- /Events/dotnet-http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/dotnet-http/README.md -------------------------------------------------------------------------------- /Events/dotnet-http/dotnet-http.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/dotnet-http/dotnet-http.csproj -------------------------------------------------------------------------------- /Events/dotnet-wait/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/dotnet-wait/LICENSE -------------------------------------------------------------------------------- /Events/dotnet-wait/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/dotnet-wait/Program.cs -------------------------------------------------------------------------------- /Events/dotnet-wait/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/dotnet-wait/README.md -------------------------------------------------------------------------------- /Events/dotnet-wait/dotnet-wait.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/dotnet-wait/dotnet-wait.csproj -------------------------------------------------------------------------------- /Events/pinfo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/pinfo/Program.cs -------------------------------------------------------------------------------- /Events/pinfo/pinfo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/Events/pinfo/pinfo.csproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnas/ClrEvents/HEAD/README.md --------------------------------------------------------------------------------