Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 249 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 249 Bytes

gormotel

OpenTelemetry plugin for GORM

Usage

db, err := gorm.Open(mysql.Open("dsn"), &gorm.Config{})
if err != nil {
    return err
}
// Use plugin
if err := db.Use(gormotel.Plugin); err != nil {
    return err
}