func contrib.go.opencensus.io/integrations/ocsql.recordCallStats

15 uses

	contrib.go.opencensus.io/integrations/ocsql (current package)
		driver.go#L126: 	defer recordCallStats(ctx, "go.sql.ping")(err)
		driver.go#L154: 	defer recordCallStats(context.Background(), "go.sql.exec")(err)
		driver.go#L195: 	defer recordCallStats(ctx, "go.sql.exec")(err)
		driver.go#L234: 	defer recordCallStats(context.Background(), "go.sql.query")(err)
		driver.go#L276: 	defer recordCallStats(ctx, "go.sql.query")(err)
		driver.go#L316: 	defer recordCallStats(context.Background(), "go.sql.prepare")(err)
		driver.go#L352: 	defer recordCallStats(ctx, "go.sql.prepare")(err)
		driver.go#L385: 	defer recordCallStats(ctx, "go.sql.begin")(err)
		driver.go#L482: 	defer recordCallStats(context.Background(), "go.sql.stmt.exec")(err)
		driver.go#L529: 	defer recordCallStats(context.Background(), "go.sql.stmt.query")(err)
		driver.go#L567: 	defer recordCallStats(ctx, "go.sql.stmt.exec")(err)
		driver.go#L606: 	defer recordCallStats(ctx, "go.sql.stmt.query")(err)
		driver.go#L803: 	defer recordCallStats(context.Background(), "go.sql.commit")(err)
		driver.go#L819: 	defer recordCallStats(context.Background(), "go.sql.rollback")(err)
		observability.go#L157: func recordCallStats(ctx context.Context, method string) func(err error) {