当前位置: 首页>>代码示例>>Golang>>正文


Golang apiserver.PathRecorderMux类代码示例

本文整理汇总了Golang中k8s/io/kubernetes/pkg/apiserver.PathRecorderMux的典型用法代码示例。如果您正苦于以下问题:Golang PathRecorderMux类的具体用法?Golang PathRecorderMux怎么用?Golang PathRecorderMux使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了PathRecorderMux类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: Install

func (l SwaggerUI) Install(mux *apiserver.PathRecorderMux, c *restful.Container) {
	fileServer := http.FileServer(&assetfs.AssetFS{
		Asset:    swagger.Asset,
		AssetDir: swagger.AssetDir,
		Prefix:   "third_party/swagger-ui",
	})
	prefix := "/swagger-ui/"
	mux.Handle(prefix, http.StripPrefix(prefix, fileServer))
}
开发者ID:,项目名称:,代码行数:9,代码来源:

示例2: Install

func (m MetricsWithReset) Install(mux *apiserver.PathRecorderMux, c *restful.Container) {
	defaultMetricsHandler := prometheus.Handler().ServeHTTP
	mux.HandleFunc("/metrics", func(w http.ResponseWriter, req *http.Request) {
		if req.Method == "DELETE" {
			apiservermetrics.Reset()
			etcdmetrics.Reset()
			io.WriteString(w, "metrics reset\n")
			return
		}
		defaultMetricsHandler(w, req)
	})
}
开发者ID:bryk,项目名称:kubernetes,代码行数:12,代码来源:metrics.go

示例3: Install

// Install adds the Profiling webservice to the given mux.
func (d Profiling) Install(mux *apiserver.PathRecorderMux, c *restful.Container) {
	mux.BaseMux().HandleFunc("/debug/pprof/", pprof.Index)
	mux.BaseMux().HandleFunc("/debug/pprof/profile", pprof.Profile)
	mux.BaseMux().HandleFunc("/debug/pprof/symbol", pprof.Symbol)
}
开发者ID:bryk,项目名称:kubernetes,代码行数:6,代码来源:profiling.go

示例4: Install

func (r UIRedirect) Install(mux *apiserver.PathRecorderMux, c *restful.Container) {
	mux.HandleFunc("/ui/", func(w http.ResponseWriter, r *http.Request) {
		http.Redirect(w, r, dashboardPath, http.StatusTemporaryRedirect)
	})
}
开发者ID:bryk,项目名称:kubernetes,代码行数:5,代码来源:ui.go


注:本文中的k8s/io/kubernetes/pkg/apiserver.PathRecorderMux类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。