Set up prometheus monitoring for a Go application - Part 1
Enable prometheus metrics in Go application
I assume you have Go web application ready to use for this project. If not, please use the below file (main.go) to start the go application.
package main
import (
"fmt"
"log"
"net/http"
)
func...
scalability.hashnode.dev2 min read