Documentation ¶
Overview ¶
Package mux provides tracing functions for tracing the gorilla/mux package (https://github.com/gorilla/mux).
Example ¶
package main import ( "net/http" muxtrace "gopkg.in/DataDog/dd-trace-go.v1/contrib/gorilla/mux" ) func handler(w http.ResponseWriter, r *http.Request) { w.Write([]byte("Hello World!\n")) } func main() { mux := muxtrace.NewRouter() mux.HandleFunc("/", handler) http.ListenAndServe(":8080", mux) }
Output:
Example (WithServiceName) ¶
package main import ( "net/http" muxtrace "gopkg.in/DataDog/dd-trace-go.v1/contrib/gorilla/mux" ) func handler(w http.ResponseWriter, r *http.Request) { w.Write([]byte("Hello World!\n")) } func main() { mux := muxtrace.NewRouter(muxtrace.WithServiceName("mux.route")) mux.HandleFunc("/", handler) http.ListenAndServe(":8080", mux) }
Output:
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Router ¶
Router registers routes to be matched and dispatches a handler.
func NewRouter ¶
func NewRouter(opts ...RouterOption) *Router
NewRouter returns a new router instance traced with the global tracer.
func (*Router) ServeHTTP ¶
func (r *Router) ServeHTTP(w http.ResponseWriter, req *http.Request)
ServeHTTP dispatches the request to the handler whose pattern most closely matches the request URL. We only need to rewrite this function to be able to trace all the incoming requests to the underlying multiplexer
func (*Router) SkipClean ¶
SkipClean defines the path cleaning behaviour for new routes. The initial value is false. Users should be careful about which routes are not cleaned
When true, if the route path is "/path//to", it will remain with the double slash. This is helpful if you have a route like: /fetch/http://xkcd.com/534/
When false, the path will be cleaned, so /fetch/http://xkcd.com/534/ will become /fetch/http/xkcd.com/534
func (*Router) StrictSlash ¶
StrictSlash defines the trailing slash behavior for new routes. The initial value is false.
When true, if the route path is "/path/", accessing "/path" will perform a redirect to the former and vice versa. In other words, your application will always see the path as specified in the route.
When false, if the route path is "/path", accessing "/path/" will not match this route and vice versa.
The re-direct is a HTTP 301 (Moved Permanently). Note that when this is set for routes with a non-idempotent method (e.g. POST, PUT), the subsequent re-directed request will be made as a GET by most clients. Use middleware or client settings to modify this behaviour as needed.
Special case: when a route sets a path prefix using the PathPrefix() method, strict slash is ignored for that route because the redirect behavior can't be determined from a prefix alone. However, any subrouters created from that route inherit the original StrictSlash setting.
func (*Router) UseEncodedPath ¶
UseEncodedPath tells the router to match the encoded original path to the routes. For eg. "/path/foo%2Fbar/to" will match the path "/path/{var}/to".
If not called, the router will match the unencoded path to the routes. For eg. "/path/foo%2Fbar/to" will match the path "/path/foo/bar/to"
type RouterOption ¶
type RouterOption func(*routerConfig)
RouterOption represents an option that can be passed to NewRouter.
func WithServiceName ¶
func WithServiceName(name string) RouterOption
WithServiceName sets the given service name for the router.
func WithSpanOptions ¶ added in v1.2.1
func WithSpanOptions(opts ...ddtrace.StartSpanOption) RouterOption
WithSpanOptions applies the given set of options to the spans started by the router.