mirror of
https://github.com/grassrootseconomics/cic-chain-events.git
synced 2024-11-06 01:36:45 +01:00
22 lines
379 B
Go
22 lines
379 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/VictoriaMetrics/metrics"
|
||
|
"github.com/labstack/echo/v4"
|
||
|
)
|
||
|
|
||
|
func initApiServer() *echo.Echo {
|
||
|
server := echo.New()
|
||
|
server.HideBanner = true
|
||
|
server.HidePort = true
|
||
|
|
||
|
if ko.Bool("metrics.go_process") {
|
||
|
server.GET("/metrics", func(c echo.Context) error {
|
||
|
metrics.WritePrometheus(c.Response(), true)
|
||
|
return nil
|
||
|
})
|
||
|
}
|
||
|
|
||
|
return server
|
||
|
}
|