module/apmgorm/open.go (26 lines of code) (raw):
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package apmgorm // import "go.elastic.co/apm/module/apmgorm/v2"
import (
"github.com/jinzhu/gorm"
"github.com/pkg/errors"
"go.elastic.co/apm/module/apmsql/v2"
)
// Open returns a *gorm.DB for the given dialect and arguments.
// The returned *gorm.DB will have callbacks registered with
// RegisterCallbacks, such that CRUD operations will be reported
// as spans.
//
// Open accepts the following signatures:
// - a datasource name (i.e. the second argument to sql.Open)
// - a driver name and a datasource name
// - a *sql.DB, or some other type with the same interface
//
// If a driver and datasource name are supplied, and the appropriate
// apmgorm/dialects package has been imported (or the driver has
// otherwise been registered with apmsql), then the datasource name
// will be parsed for inclusion in the span context.
func Open(dialect string, args ...interface{}) (*gorm.DB, error) {
var driverName, dsn string
switch len(args) {
case 1:
switch arg0 := args[0].(type) {
case string:
driverName = dialect
dsn = arg0
}
case 2:
driverName, _ = args[0].(string)
dsn, _ = args[1].(string)
}
db, err := gorm.Open(dialect, args...)
if err != nil {
return nil, errors.WithStack(err)
}
registerCallbacks(db, apmsql.DriverDSNParser(driverName)(dsn))
return db, nil
}