Skip to content

Commit

Permalink
Merge branch 'main' into synclibbpf
Browse files Browse the repository at this point in the history
  • Loading branch information
MrAlias authored Feb 7, 2025
2 parents 0189388 + f1dabe8 commit 9dc93fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ OpenTelemetry Go Automatic Instrumentation adheres to [Semantic Versioning](http
- Support Go `1.22.12`. ([#1743](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/1743))
- Support Go `1.23.6`. ([#1743](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/1743))

### Fixed

- `database/sql` instrumentation for Go < `1.17`. (#1772)

## [v0.20.0] - 2025-01-29

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ int uprobe_queryDC(struct pt_regs *ctx) {

// This instrumentation attaches uprobe to the following function:
// func (db *DB) queryDC(ctx, txctx context.Context, dc *driverConn, releaseConn func(error), query string, args []any)
UPROBE_RETURN(queryDC, struct sql_request_t, sql_events, events, 3, 0, true)
UPROBE_RETURN(queryDC, struct sql_request_t, sql_events, events, 2, 0, true)

// This instrumentation attaches uprobe to the following function:
// func (db *DB) execDC(ctx context.Context, dc *driverConn, release func(error), query string, args []any)
Expand Down

0 comments on commit 9dc93fd

Please sign in to comment.