1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
// Copyright 2020 New Relic Corporation. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
package main
import (
"context"
"database/sql"
"fmt"
"os"
"time"
_ "github.com/newrelic/go-agent/v3/integrations/nrmysql"
"github.com/newrelic/go-agent/v3/newrelic"
)
func main() {
// Set up a local mysql docker container with:
// docker run -it -p 3306:3306 --net "bridge" -e MYSQL_ALLOW_EMPTY_PASSWORD=true mysql
db, err := sql.Open("nrmysql", "root@/information_schema")
if nil != err {
panic(err)
}
app, err := newrelic.NewApplication(
newrelic.ConfigAppName("MySQL App"),
newrelic.ConfigLicense(os.Getenv("NEW_RELIC_LICENSE_KEY")),
newrelic.ConfigDebugLogger(os.Stdout),
)
if nil != err {
panic(err)
}
app.WaitForConnection(5 * time.Second)
txn := app.StartTransaction("mysqlQuery")
ctx := newrelic.NewContext(context.Background(), txn)
row := db.QueryRowContext(ctx, "SELECT count(*) from tables")
var count int
row.Scan(&count)
txn.End()
app.Shutdown(5 * time.Second)
fmt.Println("number of tables in information_schema", count)
}
|