From 694e7703006c7d16c420b89fdf9281f9d46bc1f0 Mon Sep 17 00:00:00 2001 From: jeffyanta Date: Thu, 15 Jan 2026 20:31:59 -0500 Subject: [PATCH] Forward New Relic labels with logs --- grpc/app/app.go | 1 + 1 file changed, 1 insertion(+) diff --git a/grpc/app/app.go b/grpc/app/app.go index 6aac7b1..36d3926 100644 --- a/grpc/app/app.go +++ b/grpc/app/app.go @@ -113,6 +113,7 @@ func Run(app App, options ...Option) error { newrelic.ConfigLicense(config.NewRelicLicenseKey), newrelic.ConfigDistributedTracerEnabled(true), newrelic.ConfigAppLogForwardingEnabled(true), + newrelic.ConfigAppLogForwardingLabelsEnabled(true), ) if err != nil { log.With(zap.Error(err)).Error("error connecting to new relic")