Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trace prepared statement name #24

Merged
merged 2 commits into from
Sep 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions tracer.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ const (
QueryParametersKey = attribute.Key("pgx.query.parameters")
// BatchSizeKey represents the batch size.
BatchSizeKey = attribute.Key("pgx.batch.size")
// PrepareStmtNameKey represents the prepared statement name.
PrepareStmtNameKey = attribute.Key("pgx.prepare_stmt.name")
costela marked this conversation as resolved.
Show resolved Hide resolved
)

// Tracer is a wrapper around the pgx tracer interfaces which instrument
Expand Down Expand Up @@ -305,6 +307,10 @@ func (t *Tracer) TracePrepareStart(ctx context.Context, conn *pgx.Conn, data pgx
trace.WithSpanKind(trace.SpanKindClient),
trace.WithAttributes(t.attrs...),
}

if data.Name != "" {
trace.WithAttributes(PrepareStmtNameKey.String(data.Name)),
}

if conn != nil {
opts = append(opts, connectionAttributesFromConfig(conn.Config())...)
Expand Down