├── .gitattributes ├── .gitignore ├── ETWManifests ├── .version ├── System.Net.Http.dll.manifest.xml ├── System.Net.HttpListener.dll.manifest.xml ├── System.Net.Mail.dll.manifest.xml ├── System.Net.NameResolution.dll.manifest.xml ├── System.Net.NetworkInformation.dll.manifest.xml ├── System.Net.Ping.dll.manifest.xml ├── System.Net.Primitives.dll.manifest.xml ├── System.Net.Requests.dll.manifest.xml ├── System.Net.Security.dll.manifest.xml ├── System.Net.Sockets.dll.manifest.xml ├── System.Net.WebHeaderCollection.dll.manifest.xml ├── System.Net.WebSockets.Client.dll.manifest.xml └── TraceParserGen.dll ├── LICENSE ├── README.md ├── dotnet-netrace.sln ├── dotnet-netrace ├── ClrInfoProvider.cs ├── CommandLineHelper.cs ├── EventHandlers │ ├── ITraceEventHandler.cs │ ├── SystemDiagnosticsTraceEventHandler.cs │ └── SystemNetTraceEventHandler.cs ├── Parsers │ ├── System.Diagnostics.TraceEventParser.cs │ ├── System.Net.Http.dll.cs │ ├── System.Net.HttpListener.dll.cs │ ├── System.Net.Mail.dll.cs │ ├── System.Net.NameResolution.dll.cs │ ├── System.Net.NetworkInformation.dll.cs │ ├── System.Net.Ping.dll.cs │ ├── System.Net.Primitives.dll.cs │ ├── System.Net.Requests.dll.cs │ ├── System.Net.Security.dll.cs │ ├── System.Net.Sockets.dll.cs │ ├── System.Net.WebHeaderCollection.dll.cs │ └── System.Net.WebSockets.Client.dll.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── TraceOutput.cs ├── TraceSession.cs ├── Utilities │ ├── DirectoryUtilities.cs │ ├── FileUtilities.cs │ ├── ResourceUtilities.cs │ ├── StreamUtilities.cs │ └── SupportFiles.cs └── dotnet-netrace.csproj └── scripts └── Update-AssemblyInfoVersionFiles.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/.gitignore -------------------------------------------------------------------------------- /ETWManifests/.version: -------------------------------------------------------------------------------- 1 | .NET Core 2.2.4 -------------------------------------------------------------------------------- /ETWManifests/System.Net.Http.dll.manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/ETWManifests/System.Net.Http.dll.manifest.xml -------------------------------------------------------------------------------- /ETWManifests/System.Net.HttpListener.dll.manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/ETWManifests/System.Net.HttpListener.dll.manifest.xml -------------------------------------------------------------------------------- /ETWManifests/System.Net.Mail.dll.manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/ETWManifests/System.Net.Mail.dll.manifest.xml -------------------------------------------------------------------------------- /ETWManifests/System.Net.NameResolution.dll.manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/ETWManifests/System.Net.NameResolution.dll.manifest.xml -------------------------------------------------------------------------------- /ETWManifests/System.Net.NetworkInformation.dll.manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/ETWManifests/System.Net.NetworkInformation.dll.manifest.xml -------------------------------------------------------------------------------- /ETWManifests/System.Net.Ping.dll.manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/ETWManifests/System.Net.Ping.dll.manifest.xml -------------------------------------------------------------------------------- /ETWManifests/System.Net.Primitives.dll.manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/ETWManifests/System.Net.Primitives.dll.manifest.xml -------------------------------------------------------------------------------- /ETWManifests/System.Net.Requests.dll.manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/ETWManifests/System.Net.Requests.dll.manifest.xml -------------------------------------------------------------------------------- /ETWManifests/System.Net.Security.dll.manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/ETWManifests/System.Net.Security.dll.manifest.xml -------------------------------------------------------------------------------- /ETWManifests/System.Net.Sockets.dll.manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/ETWManifests/System.Net.Sockets.dll.manifest.xml -------------------------------------------------------------------------------- /ETWManifests/System.Net.WebHeaderCollection.dll.manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/ETWManifests/System.Net.WebHeaderCollection.dll.manifest.xml -------------------------------------------------------------------------------- /ETWManifests/System.Net.WebSockets.Client.dll.manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/ETWManifests/System.Net.WebSockets.Client.dll.manifest.xml -------------------------------------------------------------------------------- /ETWManifests/TraceParserGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/ETWManifests/TraceParserGen.dll -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/README.md -------------------------------------------------------------------------------- /dotnet-netrace.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace.sln -------------------------------------------------------------------------------- /dotnet-netrace/ClrInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/ClrInfoProvider.cs -------------------------------------------------------------------------------- /dotnet-netrace/CommandLineHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/CommandLineHelper.cs -------------------------------------------------------------------------------- /dotnet-netrace/EventHandlers/ITraceEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/EventHandlers/ITraceEventHandler.cs -------------------------------------------------------------------------------- /dotnet-netrace/EventHandlers/SystemDiagnosticsTraceEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/EventHandlers/SystemDiagnosticsTraceEventHandler.cs -------------------------------------------------------------------------------- /dotnet-netrace/EventHandlers/SystemNetTraceEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/EventHandlers/SystemNetTraceEventHandler.cs -------------------------------------------------------------------------------- /dotnet-netrace/Parsers/System.Diagnostics.TraceEventParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Parsers/System.Diagnostics.TraceEventParser.cs -------------------------------------------------------------------------------- /dotnet-netrace/Parsers/System.Net.Http.dll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Parsers/System.Net.Http.dll.cs -------------------------------------------------------------------------------- /dotnet-netrace/Parsers/System.Net.HttpListener.dll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Parsers/System.Net.HttpListener.dll.cs -------------------------------------------------------------------------------- /dotnet-netrace/Parsers/System.Net.Mail.dll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Parsers/System.Net.Mail.dll.cs -------------------------------------------------------------------------------- /dotnet-netrace/Parsers/System.Net.NameResolution.dll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Parsers/System.Net.NameResolution.dll.cs -------------------------------------------------------------------------------- /dotnet-netrace/Parsers/System.Net.NetworkInformation.dll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Parsers/System.Net.NetworkInformation.dll.cs -------------------------------------------------------------------------------- /dotnet-netrace/Parsers/System.Net.Ping.dll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Parsers/System.Net.Ping.dll.cs -------------------------------------------------------------------------------- /dotnet-netrace/Parsers/System.Net.Primitives.dll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Parsers/System.Net.Primitives.dll.cs -------------------------------------------------------------------------------- /dotnet-netrace/Parsers/System.Net.Requests.dll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Parsers/System.Net.Requests.dll.cs -------------------------------------------------------------------------------- /dotnet-netrace/Parsers/System.Net.Security.dll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Parsers/System.Net.Security.dll.cs -------------------------------------------------------------------------------- /dotnet-netrace/Parsers/System.Net.Sockets.dll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Parsers/System.Net.Sockets.dll.cs -------------------------------------------------------------------------------- /dotnet-netrace/Parsers/System.Net.WebHeaderCollection.dll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Parsers/System.Net.WebHeaderCollection.dll.cs -------------------------------------------------------------------------------- /dotnet-netrace/Parsers/System.Net.WebSockets.Client.dll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Parsers/System.Net.WebSockets.Client.dll.cs -------------------------------------------------------------------------------- /dotnet-netrace/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Program.cs -------------------------------------------------------------------------------- /dotnet-netrace/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Properties/launchSettings.json -------------------------------------------------------------------------------- /dotnet-netrace/TraceOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/TraceOutput.cs -------------------------------------------------------------------------------- /dotnet-netrace/TraceSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/TraceSession.cs -------------------------------------------------------------------------------- /dotnet-netrace/Utilities/DirectoryUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Utilities/DirectoryUtilities.cs -------------------------------------------------------------------------------- /dotnet-netrace/Utilities/FileUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Utilities/FileUtilities.cs -------------------------------------------------------------------------------- /dotnet-netrace/Utilities/ResourceUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Utilities/ResourceUtilities.cs -------------------------------------------------------------------------------- /dotnet-netrace/Utilities/StreamUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Utilities/StreamUtilities.cs -------------------------------------------------------------------------------- /dotnet-netrace/Utilities/SupportFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/Utilities/SupportFiles.cs -------------------------------------------------------------------------------- /dotnet-netrace/dotnet-netrace.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/dotnet-netrace/dotnet-netrace.csproj -------------------------------------------------------------------------------- /scripts/Update-AssemblyInfoVersionFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveldesign/dotnet-netrace/HEAD/scripts/Update-AssemblyInfoVersionFiles.ps1 --------------------------------------------------------------------------------