contrib/labstack/echo.v4

Those integration are enabled by having the following import in the project’s orchestrion.tool.go file:

import (
	_ "github.com/DataDog/orchestrion"

	_ "gopkg.in/DataDog/dd-trace-go.v1/contrib/labstack/echo.v4" // integration
	//...
)

High performance, extensible, minimalist Go web framework.

New

Join Point
Call to echo.New
Advice
Replace the expression using the template:
// Using the following synthetic imports:
import (
	echo "github.com/labstack/echo/v4"
	echotrace "gopkg.in/DataDog/dd-trace-go.v1/contrib/labstack/echo.v4"
)
func() *echo.Echo {
	e := {{ . }}
	e.Use(echotrace.Middleware())
	return e
}()