We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe. We are using pgx/v5: https://github.com/golang-migrate/migrate/tree/master/database/pgx/v5 This works great, however for our general usage we have attached an OTEL tracer to it. https://pkg.go.dev/github.com/jackc/pgx/v5#ConnConfig.Tracer
config, _ := pgxpool.ParseConfig("postgres://test:[email protected]:5432/test?sslmode=require&pool_max_conns=10&pool_max_conn_lifetime=20&pool_max_conn_idle_time=10") config.Tracer = otelpgx.NewTracer() conn, err := pgxpool.NewWithConfig(ctx, config)
currently looking at the migrate codebase I do not see an option to pass the tracer as a config option...
Describe the solution you'd like A possibility to pass a tracer to the config
Why It is useful to know how long some migration statements have run atomically .
The text was updated successfully, but these errors were encountered:
Kind of related to #1132.
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
We are using pgx/v5: https://github.com/golang-migrate/migrate/tree/master/database/pgx/v5
This works great, however for our general usage we have attached an OTEL tracer to it.
https://pkg.go.dev/github.com/jackc/pgx/v5#ConnConfig.Tracer
currently looking at the migrate codebase I do not see an option to pass the tracer as a config option...
Describe the solution you'd like
A possibility to pass a tracer to the config
Why
It is useful to know how long some migration statements have run atomically .
The text was updated successfully, but these errors were encountered: