Documentation
¶
Overview ¶
Package std is a helper package to get a standard `http.Handler` compatible middleware.
Example (StdMiddleware) ¶
NegroniMiddleware shows how you would create a default middleware factory and use it to create a standdard `http.Handler` compatible middleware.
package main
import (
"log"
"net/http"
"github.com/prometheus/client_golang/prometheus/promhttp"
metrics "github.com/slok/go-http-metrics/metrics/prometheus"
"github.com/slok/go-http-metrics/middleware"
stdmiddleware "github.com/slok/go-http-metrics/middleware/std"
)
func main() {
// Create our middleware factory with the default settings.
mdlw := middleware.New(middleware.Config{
Recorder: metrics.NewRecorder(metrics.Config{}),
})
// Create our handler.
myHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
_, _ = w.Write([]byte("hello world!"))
})
// Wrap our handler with the middleware.
h := stdmiddleware.Handler("", mdlw, myHandler)
// Serve metrics from the default prometheus registry.
log.Printf("serving metrics at: %s", ":8081")
go func() {
_ = http.ListenAndServe(":8081", promhttp.Handler())
}()
// Serve our handler.
log.Printf("listening at: %s", ":8080")
if err := http.ListenAndServe(":8080", h); err != nil {
log.Panicf("error while serving: %s", err)
}
}
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Handler ¶
func Handler(handlerID string, m middleware.Middleware, h http.Handler) http.Handler
Handler returns an measuring standard http.Handler.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.