Skip to content

A gofiber/fiber middleware to add basic but very useful Prometheus metrics for your Golang app.

License

Notifications You must be signed in to change notification settings

labbsr0x/fiber-monitor

Repository files navigation

fiber-monitor

A Prometheus middleware to add basic but very useful metrics for your gofiber/fiber app.

Metrics

The exposed metrics are the following:

request_seconds_bucket{type, status, method, addr, isError, errorMessage, le}
request_seconds_count{type, status, method, addr, isError, errorMessage}
request_seconds_sum{type, status, method, addr, isError, errorMessage}
response_size_bytes{type, status, method, addr, isError, errorMessage}
dependency_up{name}
dependency_request_seconds_bucket{name, type, status, method, addr, isError, errorMessage, le}
dependency_request_seconds_count{name, type, status, method, addr, isError, errorMessage}
dependency_request_seconds_sum{name, type, status, method, addr, isError, errorMessage}
application_info{version}

Details:

  1. The request_seconds_bucket metric defines the histogram of how many requests are falling into the well-defined buckets represented by the label le;

  2. The request_seconds_count metric counts the overall number of requests with those exact label occurrences;

  3. The request_seconds_sum metric counts the overall sum of how long the requests with those exact label occurrences are taking;

  4. The response_size_bytes metric computes how much data is being sent back to the user for a given request type;

  5. The dependency_up metric register whether a specific dependency is up (1) or down (0). The label name registers the dependency name;

  6. The dependency_request_seconds_bucket metric defines the histogram of how many requests to a specific dependency are falling into the well-defined buckets represented by the label le;

  7. The dependency_request_seconds_count metric counts the overall number of requests to a specific dependency;

  8. The dependency_request_seconds_sum metric counts the overall sum of how long requests to a specific dependency are taking;

  9. The application_info holds static info of an application, such as its semantic version number;

Labels:

  1. type registers request protocol used (e.g. grpc or http);

  2. status registers the response status (e.g. HTTP status code);

  3. method registers the request method;

  4. addr registers the requested endpoint address;

  5. version registers which version of your app handled the request;

  6. isError registers whether status code reported is an error or not;

  7. errorMessage registers the error message;

  8. name registers the name of the dependency;

How to

Install

With a correctly configured Go toolchain:

go get -u github.com/labbsr0x/fiber-monitor

Register Metrics Middleware

You must register the metrics middleware to enable metric collection.

Metrics Middleware can be added to a router using fiber.New().Use():

    import (
	fibermonitor "github.com/labbsr0x/fiber-monitor"
    )
    // Creates fiber-monitor instance
    monitor, err := fibermonitor.New("v1.0.0", fibermonitor.DefaultErrorMessageKey, fibermonitor.DefaultBuckets)
    if err != nil {
        panic(err)
    }

    app := fiber.New()
    // Register fiber-monitor middleware
    app.Use(monitor.Prometheus())

⚠️ NOTE: This middleware must be the first in the middleware chain file so that you can get the most accurate measurement of latency and response size.

Expose Metrics Endpoint

You must register a specific router to expose the application metrics:

    // Register metrics endpoint
	app.Get("/metrics", func(c *fiber.Ctx) {
		fasthttpadaptor.NewFastHTTPHandler(promhttp.Handler())(c.Fasthttp)
	})

Register Error Message

It's possible to register the error message to your metrics, you must set a header to your fiber.Ctx with key defined on fibermonitor.New.

The following code creates a monitor instance with the error message key fibermonitor.DefaultErrorMessageKey passed by the second parameter:

    // Creates fiber-monitor instance
	monitor, err := fibermonitor.New("v1.0.0", fibermonitor.DefaultErrorMessageKey, fibermonitor.DefaultBuckets)

At your handler, your must set a header with the same key fibermonitor.DefaultErrorMessageKey:

func ErrorHandler(c *fiber.Ctx) {
    c.Status(fiber.StatusInternalServerError).Send(fiber.NewError(fiber.DefaultErrorMessageKey, "this is an error message - internal server error"))
}

⚠️ NOTE: The cardinality of this label affect Prometheus performance

Dependency Metrics

Register Dependency State Checkers

To add a dependency state metrics to the Monitor, you must create a checker implementing the interface DependencyChecker and add an instance to the Monitor with the period interval that the dependency must be checked.

Implementing the DependencyChecker interface:

type FakeDependencyChecker struct{}

func (m *FakeDependencyChecker) GetDependencyName() string {
	return "fake-dependency"
}

func (m *FakeDependencyChecker) Check() fibermonitor.DependencyStatus {
	return fibermonitor.DOWN
}

Adding the dependency checker to the monitor:

func main() {
	// Creates fiber-monitor instance
	monitor, err := fibermonitor.New("v1.0.0", fibermonitor.DefaultErrorMessageKey, fibermonitor.DefaultBuckets)
	if err != nil {
		panic(err)
	}

	dependencyChecker := &FakeDependencyChecker{}
	monitor.AddDependencyChecker(dependencyChecker, time.Second*30)
}

Collect Dependency Request Duration

You can also monitor request latency for dependencies calling monitor.CollectDependencyTime method.

e.g.

monitor.CollectDependencyTime("http-dependency", "http", "200", "GET", "localhost:3000", "false", "", 10)

Example

Here's a runnable example of a small fiber based server configured with fiber-monitor:

import (
	"log"
	"time"

	"github.com/gofiber/fiber"
	fibermonitor "github.com/labbsr0x/fiber-monitor"
	"github.com/prometheus/client_golang/prometheus/promhttp"
	"github.com/valyala/fasthttp/fasthttpadaptor"
)

type FakeDependencyChecker struct{}

func (m *FakeDependencyChecker) GetDependencyName() string {
	return "fake-dependency"
}

func (m *FakeDependencyChecker) Check() fibermonitor.DependencyStatus {
	return fibermonitor.DOWN
}

func YourHandler(c *fiber.Ctx) {
	c.Status(fiber.StatusOK).Send("fiber-monitor!\n")
}

func main() {
	// Creates fiber-monitor instance
	monitor, err := fibermonitor.New("v1.0.0", fibermonitor.DefaultErrorMessageKey, fibermonitor.DefaultBuckets)
	if err != nil {
		panic(err)
	}

	dependencyChecker := &FakeDependencyChecker{}
	monitor.AddDependencyChecker(dependencyChecker, time.Second*30)

	app := fiber.New()

	// Register fiber-monitor middleware
	app.Use(monitor.Prometheus())
	// Register metrics endpoint
	app.Get("/metrics", func(c *fiber.Ctx) {
		fasthttpadaptor.NewFastHTTPHandler(promhttp.Handler())(c.Fasthttp)
	})
	// Routes consist of a path and a handler function.
	app.Get("/", YourHandler)

	// Bind to a port and pass our router in
	log.Fatal(app.Listen(3000))
}

Big Brother

This project is part of a more large application called Big Brother.

About

A gofiber/fiber middleware to add basic but very useful Prometheus metrics for your Golang app.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages