Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewBuilder ¶
func NewBuilder(staticConfig static.Configuration) func(*runtime.Configuration) http.Handler
NewBuilder returns a http.Handler builder based on runtime.Configuration
Types ¶
type DashboardHandler ¶
DashboardHandler expose dashboard routes
func (DashboardHandler) Append ¶
func (g DashboardHandler) Append(router *mux.Router)
Append add dashboard routes on a router
type DebugHandler ¶
type DebugHandler struct{}
DebugHandler expose debug routes
func (DebugHandler) Append ¶
func (g DebugHandler) Append(router *mux.Router)
Append add debug routes on a router
type Handler ¶
type Handler struct {
// contains filtered or unexported fields
}
Handler serves the configuration and status of Traefik on API endpoints.
func New ¶
func New(staticConfig static.Configuration, runtimeConfig *runtime.Configuration) *Handler
New returns a Handler defined by staticConfig, and if provided, by runtimeConfig. It finishes populating the information provided in the runtimeConfig.
type RunTimeRepresentation ¶
type RunTimeRepresentation struct { Routers map[string]*runtime.RouterInfo `json:"routers,omitempty"` Middlewares map[string]*runtime.MiddlewareInfo `json:"middlewares,omitempty"` Services map[string]*serviceInfoRepresentation `json:"services,omitempty"` TCPRouters map[string]*runtime.TCPRouterInfo `json:"tcpRouters,omitempty"` TCPServices map[string]*runtime.TCPServiceInfo `json:"tcpServices,omitempty"` }
RunTimeRepresentation is the configuration information exposed by the API handler.
Click to show internal directories.
Click to hide internal directories.