mirror of
https://github.com/willnorris/imageproxy.git
synced 2024-12-16 21:56:43 -05:00
7f91379373
Make names a little more consistent and align with naming docs at https://prometheus.io/docs/practices/naming/
36 lines
1.1 KiB
Go
36 lines
1.1 KiB
Go
package imageproxy
|
|
|
|
import (
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
var (
|
|
metricServedFromCache = prometheus.NewCounter(
|
|
prometheus.CounterOpts{
|
|
Namespace: "imageproxy",
|
|
Name: "requests_served_from_cache_total",
|
|
Help: "Number of requests served from cache.",
|
|
})
|
|
metricTransformationDuration = prometheus.NewSummary(prometheus.SummaryOpts{
|
|
Namespace: "imageproxy",
|
|
Name: "transformation_duration_seconds",
|
|
Help: "Time taken for image transformations in seconds.",
|
|
})
|
|
metricRemoteErrors = prometheus.NewCounter(prometheus.CounterOpts{
|
|
Namespace: "imageproxy",
|
|
Name: "remote_fetch_errors_total",
|
|
Help: "Total remote image fetch errors",
|
|
})
|
|
metricRequestDuration = prometheus.NewSummary(prometheus.SummaryOpts{
|
|
Namespace: "http",
|
|
Name: "request_duration_seconds",
|
|
Help: "Request response times",
|
|
})
|
|
)
|
|
|
|
func init() {
|
|
prometheus.MustRegister(metricTransformationDuration)
|
|
prometheus.MustRegister(metricServedFromCache)
|
|
prometheus.MustRegister(metricRemoteErrors)
|
|
prometheus.MustRegister(metricRequestDuration)
|
|
}
|