跳至主要内容
版本:v2.x

监控

Fiber 提供监控中间件,用于报告服务器指标,灵感来自 express-status-monitor

注意

Monitor 仍处于测试阶段,将来 API 可能会发生变化!

签名

func New() fiber.Handler

示例

导入 Fiber Web 框架中包含的中间件包

import (
"github.com/gofiber/fiber/v2"
"github.com/gofiber/fiber/v2/middleware/monitor"
)

在启动 Fiber 应用后,可以使用以下可能性

// Initialize default config (Assign the middleware to /metrics)
app.Get("/metrics", monitor.New())

// Or extend your config for customization
// Assign the middleware to /metrics
// and change the Title to `MyService Metrics Page`
app.Get("/metrics", monitor.New(monitor.Config{Title: "MyService Metrics Page"}))

您还可以使用 curl -X GET -H "Accept: application/json" https://127.0.0.1:3000/metrics 访问 API 端点,该端点返回

{"pid":{ "cpu":0.4568381746582226, "ram":20516864,   "conns":3 },
"os": { "cpu":8.759124087593099, "ram":3997155328, "conns":44,
"total_ram":8245489664, "load_avg":0.51 }}

配置

属性类型说明默认值
标题字符串指标页面标题"光纤监视器"
刷新time.Duration刷新周期3 秒
APIOnly布尔值服务是否应该仅公开监视 APIfalse
下一个func(*fiber.Ctx) boolNext 定义了一个函数,在返回 true 时跳过此中间件。nil
CustomHead字符串自定义 HTML 代码到 Head 部分(结束之前)
FontURL字符串FontURL 用于指定字体资源路径或 URL"https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap"
ChartJsURL字符串ChartJsURL 用于指定 ChartJS 库路径或 URL"https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/Chart.bundle.min.js"

默认配置

var ConfigDefault = Config{
Title: defaultTitle,
Refresh: defaultRefresh,
FontURL: defaultFontURL,
ChartJsURL: defaultChartJSURL,
CustomHead: defaultCustomHead,
APIOnly: false,
Next: nil,
index: newIndex(viewBag{
defaultTitle,
defaultRefresh,
defaultFontURL,
defaultChartJSURL,
defaultCustomHead,
}),
}