* feat(server): moved an http server object into a pkg subdir to be reusable for http, spots, and integrations * feat(web): isolated web module (server, router, middleware, utils) used in spots and new integrations * feat(web): removed possible panic * feat(web): split all handlers from http service into different packages for better management. * feat(web): changed router's method signature * feat(web): added missing handlers interface * feat(web): added health middleware to remove unnecessary checks * feat(web): customizable middleware set for web servers * feat(web): simplified the handler's structure * feat(web): created an unified server.Run method for all web services (http, spot, integrations) * feat(web): fixed a json size limit issue * feat(web): removed Keys and PG connection from router * feat(web): simplified integration's main file * feat(web): simplified spot's main file * feat(web): simplified http's main file (builder) * feat(web): refactored audit trail functionality * feat(web): added ee version of audit trail * feat(web): added ee version of conditions module * feat(web): moved ee version of some web session structs * feat(web): new format of web metrics * feat(web): added new web metrics to all handlers * feat(web): added justExpired feature to web ingest handler * feat(web): added small integrations improvements
84 lines
2.2 KiB
Go
84 lines
2.2 KiB
Go
package web
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
"openreplay/backend/pkg/metrics/common"
|
|
)
|
|
|
|
type Web interface {
|
|
RecordRequestSize(size float64, url string, code int)
|
|
RecordRequestDuration(durMillis float64, url string, code int)
|
|
IncreaseTotalRequests()
|
|
List() []prometheus.Collector
|
|
}
|
|
|
|
type webImpl struct {
|
|
httpRequestSize *prometheus.HistogramVec
|
|
httpRequestDuration *prometheus.HistogramVec
|
|
httpTotalRequests prometheus.Counter
|
|
}
|
|
|
|
func New(serviceName string) Web {
|
|
return &webImpl{
|
|
httpRequestSize: newRequestSizeMetric(serviceName),
|
|
httpRequestDuration: newRequestDurationMetric(serviceName),
|
|
httpTotalRequests: newTotalRequestsMetric(serviceName),
|
|
}
|
|
}
|
|
|
|
func (w *webImpl) List() []prometheus.Collector {
|
|
return []prometheus.Collector{
|
|
w.httpRequestSize,
|
|
w.httpRequestDuration,
|
|
w.httpTotalRequests,
|
|
}
|
|
}
|
|
|
|
func newRequestSizeMetric(serviceName string) *prometheus.HistogramVec {
|
|
return prometheus.NewHistogramVec(
|
|
prometheus.HistogramOpts{
|
|
Namespace: serviceName,
|
|
Name: "request_size_bytes",
|
|
Help: "A histogram displaying the size of each HTTP request in bytes.",
|
|
Buckets: common.DefaultSizeBuckets,
|
|
},
|
|
[]string{"url", "response_code"},
|
|
)
|
|
}
|
|
|
|
func (w *webImpl) RecordRequestSize(size float64, url string, code int) {
|
|
w.httpRequestSize.WithLabelValues(url, strconv.Itoa(code)).Observe(size)
|
|
}
|
|
|
|
func newRequestDurationMetric(serviceName string) *prometheus.HistogramVec {
|
|
return prometheus.NewHistogramVec(
|
|
prometheus.HistogramOpts{
|
|
Namespace: serviceName,
|
|
Name: "request_duration_seconds",
|
|
Help: "A histogram displaying the duration of each HTTP request in seconds.",
|
|
Buckets: common.DefaultDurationBuckets,
|
|
},
|
|
[]string{"url", "response_code"},
|
|
)
|
|
}
|
|
|
|
func (w *webImpl) RecordRequestDuration(durMillis float64, url string, code int) {
|
|
w.httpRequestDuration.WithLabelValues(url, strconv.Itoa(code)).Observe(durMillis / 1000.0)
|
|
}
|
|
|
|
func newTotalRequestsMetric(serviceName string) prometheus.Counter {
|
|
return prometheus.NewCounter(
|
|
prometheus.CounterOpts{
|
|
Namespace: serviceName,
|
|
Name: "requests_total",
|
|
Help: "A counter displaying the number all HTTP requests.",
|
|
},
|
|
)
|
|
}
|
|
|
|
func (w *webImpl) IncreaseTotalRequests() {
|
|
w.httpTotalRequests.Inc()
|
|
}
|