Nik Afiq 657b6aeb22 feat: implement initial application structure with health and hello endpoints
- Add bootstrap package to initialize application components including logger, tracer, and HTTP server.
- Create config package to load runtime settings from environment variables.
- Implement observability features including logging, metrics, and tracing.
- Add health check and hello use cases with corresponding HTTP handlers.
- Introduce middleware for request ID, access logging, metrics, and recovery.
- Set up HTTP router with defined routes for health and hello endpoints.
- Include tests for health and hello endpoints to ensure proper functionality.
- Add OpenTelemetry collector configuration for trace exporting.
2026-03-05 21:22:43 +09:00

30 lines
644 B
Go

package middleware
import (
"strconv"
"time"
"github.com/gin-gonic/gin"
"switchbot-api/internal/app/observability"
)
func Metrics(httpMetrics *observability.HTTPMetrics) gin.HandlerFunc {
return func(c *gin.Context) {
start := time.Now()
httpMetrics.InFlight.Inc()
defer httpMetrics.InFlight.Dec()
c.Next()
route := c.FullPath()
if route == "" {
route = "/unknown"
}
status := strconv.Itoa(c.Writer.Status())
httpMetrics.RequestsTotal.WithLabelValues(c.Request.Method, route, status).Inc()
httpMetrics.RequestDuration.WithLabelValues(c.Request.Method, route, status).Observe(time.Since(start).Seconds())
}
}