mirror of
https://github.com/mudler/LocalAI.git
synced 2026-04-02 06:04:09 -04:00
* WIP: migrate to echo Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * tests Signed-off-by: Ettore Di Giacinto <mudler@localai.io> --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
48 lines
1.2 KiB
Go
48 lines
1.2 KiB
Go
package localai
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/mudler/LocalAI/core/services"
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
)
|
|
|
|
// LocalAIMetricsEndpoint returns the metrics endpoint for LocalAI
|
|
// @Summary Prometheus metrics endpoint
|
|
// @Param request body config.Gallery true "Gallery details"
|
|
// @Router /metrics [get]
|
|
func LocalAIMetricsEndpoint() echo.HandlerFunc {
|
|
return echo.WrapHandler(promhttp.Handler())
|
|
}
|
|
|
|
type apiMiddlewareConfig struct {
|
|
Filter func(c echo.Context) bool
|
|
metricsService *services.LocalAIMetricsService
|
|
}
|
|
|
|
func LocalAIMetricsAPIMiddleware(metrics *services.LocalAIMetricsService) echo.MiddlewareFunc {
|
|
cfg := apiMiddlewareConfig{
|
|
metricsService: metrics,
|
|
Filter: func(c echo.Context) bool {
|
|
return c.Path() == "/metrics"
|
|
},
|
|
}
|
|
|
|
return func(next echo.HandlerFunc) echo.HandlerFunc {
|
|
return func(c echo.Context) error {
|
|
if cfg.Filter != nil && cfg.Filter(c) {
|
|
return next(c)
|
|
}
|
|
path := c.Path()
|
|
method := c.Request().Method
|
|
|
|
start := time.Now()
|
|
err := next(c)
|
|
elapsed := float64(time.Since(start)) / float64(time.Second)
|
|
cfg.metricsService.ObserveAPICall(method, path, elapsed)
|
|
return err
|
|
}
|
|
}
|
|
}
|