Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevingosse/datadog-span-analyzer
https://github.com/kevingosse/datadog-span-analyzer
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kevingosse/datadog-span-analyzer
- Owner: kevingosse
- Created: 2022-10-21T09:12:34.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-21T09:25:20.000Z (about 2 years ago)
- Last Synced: 2024-11-09T00:31:38.827Z (about 2 months ago)
- Language: C#
- Size: 7.81 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# datadog-span-analyzer
Either build from Visual Studio (SpanAnalyzer.csproj) or from the command-line:
```
dotnet build -r win-x64
```Then launch the executable with a path to a memory dump:
```
SpanAnalyzer.exe C:\dumps\myMemoryDump.dmp
```The result is printed into the console, so it's recommended to redirect it to a file:
```
SpanAnalyzer.exe C:\dumps\myMemoryDump.dmp > output.txt
```SpanAnalyzer must be compiled with the same bitness as the target memory dump. So to open a 32 bit memory dump, the tool must be compiled in 32 bit:
```
dotnet build -r win-x86
```