Documentation ¶
Index ¶
- type FiberPrometheus
- func New(serviceName string) *FiberPrometheus
- func NewWith(serviceName, namespace, subsystem string) *FiberPrometheus
- func NewWithLabels(labels map[string]string, namespace, subsystem string) *FiberPrometheus
- func NewWithRegistry(registry prometheus.Registerer, serviceName, namespace, subsystem string, ...) *FiberPrometheus
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FiberPrometheus ¶
type FiberPrometheus struct {
// contains filtered or unexported fields
}
FiberPrometheus ...
func New ¶
func New(serviceName string) *FiberPrometheus
New creates a new instance of FiberPrometheus middleware serviceName is available as a const label
func NewWith ¶
func NewWith(serviceName, namespace, subsystem string) *FiberPrometheus
NewWith creates a new instance of FiberPrometheus middleware but with an ability to pass namespace and a custom subsystem Here serviceName is created as a constant-label for the metrics Namespace, subsystem get prefixed to the metrics.
For e.g. namespace = "my_app", subsystem = "http" then metrics would be `my_app_http_requests_total{...,service= "serviceName"}`
func NewWithLabels ¶
func NewWithLabels(labels map[string]string, namespace, subsystem string) *FiberPrometheus
NewWithLabels creates a new instance of FiberPrometheus middleware but with an ability to pass namespace and a custom subsystem Here labels are created as a constant-labels for the metrics Namespace, subsystem get prefixed to the metrics.
For e.g. namespace = "my_app", subsystem = "http" and labels = map[string]string{"key1": "value1", "key2":"value2"} then then metrics would become `my_app_http_requests_total{...,key1= "value1", key2= "value2" }`
func NewWithRegistry ¶ added in v2.4.0
func NewWithRegistry(registry prometheus.Registerer, serviceName, namespace, subsystem string, labels map[string]string) *FiberPrometheus
NewWithRegistry creates a new instance of FiberPrometheus middleware but with an ability to pass a custom registry, serviceName, namespace, subsystem and labels Here labels are created as a constant-labels for the metrics Namespace, subsystem get prefixed to the metrics.
For e.g. namespace = "my_app", subsystem = "http" and labels = map[string]string{"key1": "value1", "key2":"value2"} then then metrics would become `my_app_http_requests_total{...,key1= "value1", key2= "value2" }`
func (*FiberPrometheus) CustomCacheKey ¶ added in v2.7.0
func (ps *FiberPrometheus) CustomCacheKey(cacheHeaderKey string)
CustomCacheKey allows to set a custom header key for caching By default it is set to "X-Cache", the fiber default
func (*FiberPrometheus) Middleware ¶
func (ps *FiberPrometheus) Middleware(ctx *fiber.Ctx) error
Middleware is the actual default middleware implementation
func (*FiberPrometheus) RegisterAt ¶
func (ps *FiberPrometheus) RegisterAt(app fiber.Router, url string, handlers ...fiber.Handler)
RegisterAt will register the prometheus handler at a given URL
func (*FiberPrometheus) SetSkipPaths ¶ added in v2.7.0
func (ps *FiberPrometheus) SetSkipPaths(paths []string)
SetSkipPaths allows to set the paths that should be skipped from the metrics