APM NLog 布局
编辑APM NLog 布局
编辑允许您在 NLog 模板中添加以下占位符
-
ElasticApmTraceId
-
ElasticApmTransactionId
-
ElasticApmSpanId
-
ElasticApmServiceName
-
ElasticApmServiceNodeName
-
ElasticApmServiceVersion
如果可用,这些占位符将被替换为相应的 Elastic APM 变量
用法
编辑如何从 API 使用
编辑// Logged message will be in format of `trace-id|transation-id|span-id|InTransaction` // or `|||InTransaction` if the place holders are not available var consoleTarget = new ConsoleTarget("console"); consoleTarget.Layout = "${ElasticApmServiceName}|${ElasticApmTraceId}|${ElasticApmTransactionId}|${ElasticApmSpanId}|${message}"; config.AddRule(LogLevel.Debug, LogLevel.Fatal, consoleTarget); LogManager.Configuration = config; var logger = LogManager.GetCurrentClassLogger();
如何从 NLog.config 使用
编辑<nlog> <extensions> <add assembly="Elastic.Apm.NLog"/> </extensions> <targets> <target name="console" type="console" layout="${ElasticApmTraceId}|${ElasticApmTransactionId}|${ElasticApmSpanId}|${message}" /> </targets> <rules> <logger name="*" minLevel="Debug" writeTo="Console" /> </rules> </nlog>
先决条件
编辑要使其正常工作,需要配置 Elastic APM Agent。如果未配置代理,则 APM 占位符将为空。