diff options
| author | Paul Buetow <paul@buetow.org> | 2025-06-27 07:29:07 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-06-27 07:29:07 +0300 |
| commit | 408d6365383ecca294c3260df261f08092484aef (patch) | |
| tree | ee2fd4a370a31677871c70f4c5c50f61b4dcfdbd /go.mod | |
| parent | afba86489b00a2f5ac4d39b2853c2c51c2931536 (diff) | |
Add comprehensive profiling documentation and clean up unused dependencies
- Added detailed README.md for internal/profiling package documenting:
- Architecture and core components
- Usage instructions for command-line and programmatic access
- Profile output formats and analysis techniques
- Best practices and troubleshooting guides
- Integration with CI/CD pipelines
- Removed dprofile binary (obsolete, replaced by built-in profiling)
- Cleaned up go.mod to remove unused pprof dependency
The profiling package is now fully documented to help developers
understand and utilize DTail's performance analysis capabilities.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -8,7 +8,4 @@ require ( golang.org/x/term v0.32.0 ) -require ( - github.com/google/pprof v0.0.0-20250607225305-033d6d78b36a // indirect - golang.org/x/sys v0.33.0 // indirect -) +require golang.org/x/sys v0.33.0 // indirect |
