1,479 questions
-1
votes
1
answer
30
views
Spring Boot 3.5.7 with newrelic agent
I have a Spring Boot application on version 3.5.6 and the New Relic agent is logging the application data without any problems. After updating Spring Boot to version 3.5.7, the application logs ...
1
vote
0
answers
53
views
NewRelic: Ignore Spring Boot Actuator Transactions
We've got NewRelic integrated into Spring Boot. I don't know why but since yesterday NR identifies all requests to actuator endpoints (including the health check and prometheus endpoints that get ...
0
votes
1
answer
99
views
PostgreSQL slow queries are not shown in New Relic
Despite adding the below configuration in the YAML and restarting New Relic, slow queries are not shown in the New Relic dashboard.
I need help in the configuration, how to get the statistics of slow ...
1
vote
0
answers
46
views
NewRelic custom instrumentation for .net console application does not publish transaction names as expected
So, I have a console .Net 6 application which runs as a BackgroundService using the extension method UseWindowsService(). In this app, I am using NewRelic custom instrumentations using a newrelic....
0
votes
0
answers
116
views
Specific instructions for AWS fargate metrics using opentelemetry-collector sidecar
Does anybody know of an example or an article giving instructions on how to collect memory, cpu, perhaps k8s behaviour etc stats/metrics on AWS fargate pods running the otel collector as a sidecar and,...
0
votes
1
answer
36
views
How can I plot a graph on categorisation of network call count per users over a period of time
I have NRQL as below which works
FROM (
SELECT
count(deviceUuid) AS call_count
FROM MobileRequest
WHERE
appName = 'appName'
AND requestDomain = 'domain.name.com'
AND ...
0
votes
0
answers
103
views
How to stop/exclude metrics from new relic integration using helm for my kubernetes cluster?
I have installed new relic on my kubernetes cluster infrastructure using the helm solution, i need to stop the ingestion/scraping of metrics related to containers, node, network, disk and memory etc ...
0
votes
0
answers
123
views
Enable Zero-Code Instrumentation for gRPC Endpoint Metrics in a Play Framework App with OpenTelemetry
I have a Scala application built with the Play Framework that exposes a gRPC endpoint. Here's the current setup:
The application is instrumented with opentelemetry-javaagent.
The OpenTelemetry data ...
0
votes
0
answers
65
views
PHP Agent Installer Task Execution
Experiencing an issue during the installation of the New Relic PHP Agent. The installation fails during the task send_transaction with the following error:
{"err":"task: Failed to run ...
0
votes
1
answer
319
views
How to correctly install an extension on an existing Azure web app using Bicep?
I have been trying to get an extension installed correctly on an existing app service, using a bicep module shown below. The problem is, it sometimes works, and other times it will fail due to "...
0
votes
1
answer
141
views
How to create a workflow for Alert Policy in NewRelic using NerdGraph API
I am trying to programatically create NewRelic workflows, I know I need three things.
destination
channel
workflow.
So I started with creating a destination.
mutation CreateDestination {
...
1
vote
1
answer
260
views
Tracing transaction details with New Relic when passed to another thread
We are using New Relic Java agent with Play framework and having some troubles with tracking the transaction segments / details when the execution is passed on to another thread.
Consider this code:
...
1
vote
0
answers
97
views
New Relic: PostgreSQL Docker Container Logs Not Appearing in Dashboard
I'm trying to set up my PostgreSQL Docker container logs to be sent to New Relic. I've followed the setup instructions for the New Relic Infrastructure agent, but I am not seeing the expected logs in ...
0
votes
1
answer
160
views
New relic TraceId Not getting poplulated in ASP.NET Core middleware
I am trying to access the newrelic traceid in ASP.NET Core middleware and pass it as a response header in the response.
Please see the implementation below :
public sealed class TraceIdMiddleware
{
...
1
vote
0
answers
268
views
new-relic's browser-agent npm package can't be found
I'm following the instructions mentioned in https://www.npmjs.com/package/@newrelic/browser-agent#new-relic-browser-agent; unfortunately, when my application reaches the import statement, it fails.
...
0
votes
1
answer
496
views
Add Dynamic Url to a New Relic Dashboard
I'm currently working on a graph widget for a New Relic dashboard. Dashboard query contains dynamic parameters. I need to get data for all requests for that API call.
Here is my current (not working) ...
0
votes
1
answer
209
views
Unable to connect to newrelic using Opentelemetry
I am trying to send tracing data to newrelic using opentelemetry-otlp via http
Below is code snippet that I am using
fn main() -> {
let result = init_tracer_provider();
globa::...
0
votes
1
answer
336
views
How to configure .net application running in kubernetes to see the app in the newrelic APM tab?
I have the application running inside the kubernetes pod.
I have installed the newrelic dotnet agent in the kubernetes daemonset via helm command shown in the offical documentation.
Now I want that ...
0
votes
1
answer
116
views
New Relic logging, does it affect existing (logback) logging?
Our Java Spring Boot web app runs in AWS. We want to use New Relic to monitor the API endpoints and their timings. We don't want anything else, as we cant afford it. AWS sends our logs to our self ...
0
votes
1
answer
85
views
How to develop NRQL alert when 200 status rate < 95% base on this pie
I am a new user for NewRelic, now I can develop NRQL to query some data:
SELECT count(http.server.request.duration)
FROM Metric
WHERE stage = 'production'
AND url.full = '/AAAAAAA/BBBBBBBB'
AND ...
0
votes
0
answers
176
views
How can I apply multiple tolerations with dynamic values in kubernetes helm values.yaml?
I apologize; I'm new to Kubernetes and yaml configuration and would like to seek help to achieve my goal related to Kubernetes spec. I want to add the following as a patch on my pixie values.yaml:
...
0
votes
1
answer
373
views
NRQL: Continuous graph for LATEST query
Background
I have a job that reports the status of a dependency when the status changes. So it reports 0 if it goes down, and 1 when it goes back up. But it reports very rarely because the dependency ...
1
vote
0
answers
183
views
Adding custom attributes to Traces in Dotnet
We have a distributed system and I am working on a ticket to add attributes to the Open Telemetry traces for NewRelic. In dotnet this is done by setting tags, like so:
Activity.Current.SetTag("bf....
1
vote
0
answers
24
views
PHP 8.1 Mysqli Execute throwing Uncaught ArgumentCountError [duplicate]
Environment:
Ubuntu 20.04
PHP 8.1.28
MySQL 5.7.12
Newrelic 10.19.0.9 (I have found issues with newrelic that seemed promising, but turning off newrelic didn't help). Reference: https://github.com/...
-1
votes
1
answer
402
views
Incrementing counter in NewRelic from Java Agent. Can't query for it with NRQL
Background
I have a Kotlin project, with v8.11.0 of the Java NewRelic Agent and API.
I send some custom metrics to NR already, with the CustomEvents API, like this:
fun recordCustomEvent(name: ...