当前位置: 首页 > 知识库问答 >
问题:

Beego和Newrelic集成的问题

郜修雅
2023-03-14

我在过程中创建一个Web应用程序在围棋使用贝戈(https://beego.me)。

我需要捕获Newrelic中的应用程序监控和计量指标,并能够查看Newrelic中的所有事务。

我遵循了此文档,正在使用Beego GoRelic在代码中初始化Newrelic代理。

这是我的router.go课

import (
    "github.com/astaxie/beego"
    "github.com/yvasiyarov/beego_gorelic"
)

func init() {
    beego_gorelic.InitNewrelicAgent()
    beego.Router("path", &controller{}, "functionName") // code broken intentionally
}

在我的应用程序中。conf,我提供了newrelic许可证密钥和应用程序名称,如下所示:

NewrelicLicense = "key"
newrelicAppname = "App Name"

当我在dev模式下运行应用程序时,我能够看到正在打印的指标,如下所示:

Send data:{
    "agent": {
        "host": "localhost",
        "version": "0.0.6",
        "pid": 13942
    },
    "components": [
        {
            "name": "Name",
            "guid": "com.github.yvasiyarov.GoRelic",
            "duration": 60,
            "metrics": {
                "Component/Runtime/GC/GCTime/Max[nanoseconds]": 0,
                "Component/Runtime/GC/GCTime/Mean[nanoseconds]": 0,
                "Component/Runtime/GC/GCTime/Min[nanoseconds]": 0,
                "Component/Runtime/GC/GCTime/Percentile95[nanoseconds]": 0,
                "Component/Runtime/GC/NumberOfGCCalls[calls]": 0,
                "Component/Runtime/GC/PauseTotalTime[nanoseconds]": 0,
                "Component/Runtime/General/NOCgoCalls[calls]": 1,
                "Component/Runtime/General/NOGoroutines[goroutines]": 6,
                "Component/Runtime/Memory/InUse/Heap[bytes]": 538368,
                "Component/Runtime/Memory/InUse/MCacheInuse[bytes]": 13888,
                "Component/Runtime/Memory/InUse/MSpanInuse[bytes]": 13192,
                "Component/Runtime/Memory/InUse/Stack[bytes]": 360448,
                "Component/Runtime/Memory/InUse/Total[bytes]": 538368,
                "Component/Runtime/Memory/Operations/NoFrees[frees]": 128,
                "Component/Runtime/Memory/Operations/NoMallocs[mallocs]": 2903,
                "Component/Runtime/Memory/Operations/NoPointerLookups[lookups]": 0,
                "Component/Runtime/Memory/SysMem/BuckHash[bytes]": 3078,
                "Component/Runtime/Memory/SysMem/Heap[bytes]": 66748416,
                "Component/Runtime/Memory/SysMem/MCache[bytes]": 16384,
                "Component/Runtime/Memory/SysMem/MSpan[bytes]": 16384,
                "Component/Runtime/Memory/SysMem/Stack[bytes]": 360448,
                "Component/Runtime/Memory/SysMem/Total[bytes]": 69928960,
                "Component/http/responseTime/max[ms]": 0,
                "Component/http/responseTime/mean[ms]": 0,
                "Component/http/responseTime/min[ms]": 0,
                "Component/http/responseTime/percentile75[ms]": 0,
                "Component/http/responseTime/percentile90[ms]": 0,
                "Component/http/responseTime/percentile95[ms]": 0,
                "Component/http/throughput/1minute[rps]": 0,
                "Component/http/throughput/rateMean[rps]": 0
            }
        }
    ],
    "URL": "https://platform-api.newrelic.com/platform/v1/metrics"
} 

这告诉我new relic代理已启动并正在捕获数据。

除此之外,我没有编写任何其他代码来将Newrelic集成到我的代码中。

这些指标没有通过这些设置和设置报告给Newrelic,我无法找到更好的文档来解决这个问题。

我错过了什么?

此外,是否有其他方法将newrelic集成到Beego应用程序中?

附言:我没有使用Beago过滤器作为预处理器,而是使用控制器中的准备方法来预处理请求。但是,这个库似乎在Beago框架中添加了2个过滤器,如下所示:

    beego.InsertFilter("*", beego.BeforeRouter, InitNewRelicTimer, false)
    beego.InsertFilter("*", beego.FinishRouter, ReportMetricsToNewrelic, false)

附加日志

2020/01/09 20:13:29 Init GC metrics collection. Poll interval 10 seconds.
2020/01/09 20:13:29 Init memory allocator metrics collection. Poll interval 60 seconds.
2020/01/09 20:13:29 Init HTTP metrics collection.
2020/01/09 20:13:29 [I] [gorelic.go:71] NewRelic agent started 
2020/01/09 20:13:29 Can not get metrica: Runtime/System/Threads, got error:this metrica was not implemented yet for darwin
2020/01/09 20:13:29 Can not get metrica: Runtime/System/FDSize, got error:this metrica was not implemented yet for darwin
2020/01/09 20:13:29 Can not get metrica: Runtime/System/Memory/VmPeakSize, got error:this metrica was not implemented yet for darwin
2020/01/09 20:13:29 Can not get metrica: Runtime/System/Memory/VmCurrent, got error:this metrica was not implemented yet for darwin
2020/01/09 20:13:29 Can not get metrica: Runtime/System/Memory/RssPeak, got error:this metrica was not implemented yet for darwin
2020/01/09 20:13:29 Can not get metrica: Runtime/System/Memory/RssCurrent, got error:this metrica was not implemented yet for darwin
2020/01/09 20:13:29 Send data:{
    "agent": {
        "host": "localhost",
        "version": "0.0.6",
        "pid": 14931
    },
    "components": [
        {
            "name": "App Name",
            "guid": "com.github.yvasiyarov.GoRelic",
            "duration": 60,
            "metrics": {
                "Component/Runtime/GC/GCTime/Max[nanoseconds]": 0,
                "Component/Runtime/GC/GCTime/Mean[nanoseconds]": 0,
                "Component/Runtime/GC/GCTime/Min[nanoseconds]": 0,
                "Component/Runtime/GC/GCTime/Percentile95[nanoseconds]": 0,
                "Component/Runtime/GC/NumberOfGCCalls[calls]": 0,
                "Component/Runtime/GC/PauseTotalTime[nanoseconds]": 0,
                "Component/Runtime/General/NOCgoCalls[calls]": 1,
                "Component/Runtime/General/NOGoroutines[goroutines]": 8,
                "Component/Runtime/Memory/InUse/Heap[bytes]": 591616,
                "Component/Runtime/Memory/InUse/MCacheInuse[bytes]": 13888,
                "Component/Runtime/Memory/InUse/MSpanInuse[bytes]": 16592,
                "Component/Runtime/Memory/InUse/Stack[bytes]": 393216,
                "Component/Runtime/Memory/InUse/Total[bytes]": 591616,
                "Component/Runtime/Memory/Operations/NoFrees[frees]": 132,
                "Component/Runtime/Memory/Operations/NoMallocs[mallocs]": 2988,
                "Component/Runtime/Memory/Operations/NoPointerLookups[lookups]": 0,
                "Component/Runtime/Memory/SysMem/BuckHash[bytes]": 3078,
                "Component/Runtime/Memory/SysMem/Heap[bytes]": 66715648,
                "Component/Runtime/Memory/SysMem/MCache[bytes]": 16384,
                "Component/Runtime/Memory/SysMem/MSpan[bytes]": 32768,
                "Component/Runtime/Memory/SysMem/Stack[bytes]": 393216,
                "Component/Runtime/Memory/SysMem/Total[bytes]": 69928960,
                "Component/http/responseTime/max[ms]": 0,
                "Component/http/responseTime/mean[ms]": 0,
                "Component/http/responseTime/min[ms]": 0,
                "Component/http/responseTime/percentile75[ms]": 0,
                "Component/http/responseTime/percentile90[ms]": 0,
                "Component/http/responseTime/percentile95[ms]": 0,
                "Component/http/throughput/1minute[rps]": 0,
                "Component/http/throughput/rateMean[rps]": 0
            }
        }
    ],
    "URL": "https://platform-api.newrelic.com/platform/v1/metrics"
} 

这可能是问题所在吗?我该怎么解决这个问题?

共有1个答案

云和同
2023-03-14

我在回答我自己的问题,因为我相信我找到了一种方法,它可能也会帮助其他人——显然,这只是一个更努力寻找现有插件的问题。我发现这个插件:https://github.com/sergeylanzman/newrelic_beego这正是我所需要的。

如果我们观察代码,那么作者已经创建了3种方法-

  1. 启动变速箱
  2. 名称交易
  3. 结束事务处理

并在Beego环境中插入这些过滤器。在幕后,作者使用了官方的Newrelic Go代理(https://github.com/newrelic/go-agent)并且正在使用事务来报告APM数据。

下面是注册3个过滤器的插件的示例代码-

    beego.InsertFilter("*", beego.BeforeRouter, StartTransaction, false)
    beego.InsertFilter("*", beego.AfterExec, NameTransaction, false)
    beego.InsertFilter("*", beego.FinishRouter, EndTransaction, false)
    beego.Info("NewRelic agent start")

它使用Beego的上下文结构跨功能跟踪事务数据(如上下文文档中所述)

我将继续对此进行更多探索,并在我们进行时添加对外部调用、数据库调用和分布式跟踪的跟踪,但这解决了我的问题。

P、 我已经停止使用我之前使用的插件,因为这个包还向NewRelic报告Go Runtime stats,使另一个插件过时(个人观点:))

 类似资料:
  • 问题内容: 尝试按以下说明设置https:https://github.com/astaxie/beego/issues/401并将其保存在日志中: 我正在Windows 10上运行它。有人让Beego使用https吗?我使用了自签名证书,该证书对于通用golang https简单程序很好用。 问题答案: 在Chrome和名为Postman的Chrome扩展程序中进行了测试。通过设置chrome:

  • 我在将JProfiler连接到Linux上运行的远程WebSphere 8.5.5实例时遇到了一些问题。当我在我的Windows 10机器上启动JProfiler时,我选择“本地或远程配置应用程序服务器”,并选择与IBM WebSphere 8集成的选项。x应用服务器。 我遇到的问题是设置配置文件的“指定远程地址”部分。安装程序说我需要在目标JVM上运行分析代理。我从JProfiler网站下载ta

  • 我创建了一个新示例,并将代码分为客户端和服务器端。 完整的代码可以在这里找到。 服务器端有3个版本。 服务器无Spring Boot应用程序,使用Spring Integration RSocket InboundGateway 服务器引导重用Spring RSocket autconfiguration,并通过serverrsocketmessagehandler创建ServerRSocketC

  • beego 是一个快速开发 Go 应用的 HTTP 框架,他可以用来快速开发 API、Web 及后端服务等各种应用,是一个 RESTful 的框架,主要设计灵感来源于 tornado、sinatra 和 flask 这三个框架,但是结合了 Go 本身的一些特性(interface、struct 嵌入等)而设计的一个框架。支持如下特性: MVC REST 智能路由 日志调试 配置管理 模板自动渲染

  • 我正在Kafka(kafka_2.11-0.10.0.0)和OSB 12c(12.2.1.2)之间建立连接,以便在OSB上使用来自Kafka的消息。 我已经按照要求的步骤在OSB中安装了Kafka Transport,并成功运行,但是当我尝试使用来自Kafka的消息时,我得到以下错误: com . bea . wli . sb . transports . transport exception:

  • 我是骆驼的新手,并且面临着需要设置的路线问题。如果有人可以引导我到正确的论坛,或者更好地纠正我面临的问题,那就太好了。这是我需要做的 - 公开一个 restlet endpoint来接受数据;使用此数据作为外部 SOAP Web 服务的输入,并以 JSON 格式将响应发送回调用方...这是我所做的...但是,当Camel尝试调用Web服务时,我收到以下错误...谁能指导我到这里?谢谢。 我使用的是