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
Bug: using apmgormv2 double query in kibana
my config in go init db:
import ( "gorm.io/gorm" mysql "go.elastic.co/apm/module/apmgormv2/v2/driver/mysql" ) //..... o.Db, err = gorm.Open(mysql.Open(host), &gorm.Config{ Logger: newLogger, })
using gorm with context:
... err = o.db.WithContext(ctx).Table(tableNameActivation).Where(map[string]interface{}{"username": trueUname}).First(&act).Error if err != nil { return }
and the result in my kibana:
any 2 cell in one query
2 call in one sample query detail
expactation shold produce 1 query in 1 cell and 1 calls
The text was updated successfully, but these errors were encountered:
helo sorry , can i see on how you setup the gorm.io/gorm db connection with apmmysql driver, my query span didn't even show on my apm
Sorry, something went wrong.
No branches or pull requests
Bug: using apmgormv2 double query in kibana
my config in go init db:
using gorm with context:
and the result in my kibana:
any 2 cell in one query
2 call in one sample query detail
expactation shold produce 1 query in 1 cell and 1 calls
The text was updated successfully, but these errors were encountered: