-
Notifications
You must be signed in to change notification settings - Fork 217
Report isolation level on ActiveRecord transaction #1672
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
base: main
Are you sure you want to change the base?
Conversation
tracer.in_span('ActiveRecord.transaction', attributes: { 'code.namespace' => name }) do | ||
super | ||
def transaction(*args, **kwargs, &block) | ||
attributes = { 'code.namespace' => name } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit:
attributes = {
'code.namespace' => name,
'db.transaction_isolation' => kwargs[:isolation]
}.compact!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@xuan-cao-swi this would potentially set the attributes hash to nil.
https://ruby-doc.org/3.4.1/Hash.html#method-i-compact-21
compact! → self or nil
Returns self with all its nil-valued entries removed (in place):
Returns nil if no entries were removed.
attributes['db.transaction_isolation'] = kwargs[:isolation].to_s | ||
end | ||
tracer.in_span('ActiveRecord.transaction', attributes: attributes) do | ||
super(*args, **kwargs, &block) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
super
is enough
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this submission. Before we can accept it though, the tests must pass.
The tests are currently failing https://github.com/open-telemetry/opentelemetry-ruby-contrib/actions/runs/17834374868/job/51063006548#step:3:191
def transaction(*args, **kwargs, &block) | ||
attributes = { 'code.namespace' => name } | ||
if kwargs[:isolation] | ||
attributes['db.transaction_isolation'] = kwargs[:isolation].to_s |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: There is no semantic convention for this.
In practice only 1 other instrumentation implements it and namespaces it under the specific DB vendor since I believe Isolation Levels are rather specific to ACID SQL style databases.
Having said all that, I think that its fine to be under the db
namespace but name it db.tansaction_isolation_level
for symmetry with the existing usage.
🙏🏼 if you would kindly submit a PR to add this semconv attribute upstream.
Do you all use db client spans as well? Would you like this attribute to appear on those spans as well or is this span good enough?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would go with the attribute naming db.tansaction.isolation_level
so that we could also have db.tansaction.id
. I also suggest raising a pr to add it to semconv.
This is a very useful field if your app is in progress of switching in between isolation levels.