1,477 questions
-1
votes
1
answer
59
views
Spring Boot 3.5.7 with newrelic agent [closed]
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 ...
0
votes
0
answers
50
views
New Relic Cassandra integration shows only a few keyspaces/tables (29), how to monitor all?
I integrated New Relic Cassandra integration with my Cassandra cluster.
Issue:
The integration is only capturing a small subset of keyspaces and tables (around 29 tables).
Most of the keyspaces/...
1
vote
0
answers
65
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
0
answers
35
views
Integrate AWS acconut with NewRelic using AWS firehose
I am trying to integrate NewRelic with AWS account, i followed the exact steps Provided by NewRelic, i created AWS firehose, and AWS cloudwatch streams, simply everything working fine, except from ...
0
votes
1
answer
106
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 ...
0
votes
0
answers
34
views
Do NRQL queries in New-Relic ignore certain data points when queried for larger data sets?
I have set up new relic (free tier) for a medium scale project and am trying to get the maximum CPU usage over a period of time. Issue is, the value returned by the query gives results that appear to ...
1
vote
0
answers
58
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
1
answer
128
views
Flutter App - NewRelic Mobile Not Logging and Zone Error Issues
void main() async {
EndPoints.configure();
print(AnsiStyles.red('This is red!'));
print('......env.......${EndPoints.env}........${EndPoints.baseUrl}');
var appToken = "";
if (...
0
votes
0
answers
128
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,...
2
votes
0
answers
454
views
OpenTelemetry Logs in New Relic Missing Stack Traces and Have a Different Structure than Local Logs
I recently switched from using New Relic’s Java agent to OpenTelemetry (opentelemetry-javaagent.jar) to avoid vendor lock-in. In theory, OpenTelemetry should make it easier to migrate to another ...
0
votes
1
answer
37
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 ...
1
vote
0
answers
432
views
How to properly trace long-running processes in OpenTelemetry for .NET? Issue with splitting long spans
I am using OpenTelemetry in .NET to trace processes that start with an HTTP request, are passed through RabbitMQ, and then processed by background services. The goal of the common package is to trace ...
0
votes
0
answers
111
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
2
answers
87
views
How to calculate average difference between timestamps within same table?
I have data in a New Relic table as follows:
id
timestamp
status
A
2024-12-01 11:36:00
Started processing step 1
B
2024-12-01 11:37:00
Started processing step 1
B
2024-12-01 11:38:00
Started ...
0
votes
0
answers
132
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
91
views
Azure function New Relic APM Service Not Creating
I'm working with an Azure Function using the in-process model, configured with .NET 8 and Function version 4. I've implemented Serilog with New Relic ingestion and am successfully receiving logs. ...
0
votes
1
answer
332
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 "...
-1
votes
1
answer
139
views
Is it possible to use env/system variables inside newrelic.yml
I wonder if i can use env/system variables inside of my new relic java agent config. I know that the env variables rewrite the corresponding settings, but i want to use the env variable value inside ...
0
votes
1
answer
143
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 {
...
0
votes
2
answers
324
views
Unable to see logs in NewRelic using opentelemetry-dotnet
When the ASP.NET application is starting up, some logs are sent and they are visible in NewRelic. But when the application handles an http request, the logs sent through ILogger<T> never appear ...
1
vote
1
answer
273
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
311
views
How to add X-CorrelationToken header to open telemetry java agent so that logs can be searched
Our font end sends X-CorrelationToken header to all our backend API calls, and we write this token to every log entry, so we can search log files (via ELK) when an error occurs in a call.
We need to ...
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 ...
1
vote
1
answer
72
views
Heroku Django performance issues - Request Queuing
We run a Django application on Heroku, and lately we've been seeing some performance issues. We have New Relic APM add-on installed, and I can see that any time there is a peak in response times, the ...
0
votes
1
answer
173
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
317
views
NewRelic NRQL: Having clause in alert condition
I have the following query
SELECT
count(*) AS ErrorCount,
(filter(count(*), WHERE error = true AND http.statusCode = '500') / count(*)) * 100 AS 'ErrorRate'
FROM Transaction
WHERE appName = ...
1
vote
0
answers
274
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
0
answers
60
views
How to use php bref newrelic extension for AWS Lambda?
I am deploying one laravel application via bref into AWS lambda.
It works great.
I want to add newrelic to my lambda as well.
I am following the documentation here
https://github.com/brefphp/extra-php-...
0
votes
1
answer
525
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
178
views
How to create a New Relic ping monitor
I created new account for new relic - on a free tier. And want to run a monitor to check the health of my webapp.
According to their documentation it should be possible to execute up to 500 synthetic ...
0
votes
1
answer
216
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
334
views
Monitor metric in the last 24 hours using New Relic with Terraform
I'm trying to create a new relic alert condition using Terraform that looks at a certain metric, tunnel Data Out, for the last 24 hours, and alerts us if the the threshold is bigger than 50GB.
This ...
0
votes
1
answer
345
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
82
views
new relic, does the (java) application have to be restarted to pickup changes to newrelic.yml?
We are using the java agent to monitor service calls etc.
There are several features such as slow query logging that new relic agent offers, but we don't want to have switched on by default due to ...
0
votes
1
answer
124
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
89
views
new relic with spring boot, how to get it to NOT use the newrelic.yml which maven downloads?
The guided instrucions for new relic with spring-boot tell you to:
add the below to your pom
download newrelic.yml and add your licence key, and put the newrelic.yml in a folder called newrelic.
...
0
votes
1
answer
93
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
2
answers
265
views
Where do we get the path to newrelic.jar from?
When you add your Spring Boot web API app to New Relic for monitoring, the “guided install” instructions for Spring Boot on Windows give three steps:
add lines to pom
download newrelic.yml file
add ...
0
votes
0
answers
178
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:
...
1
vote
0
answers
58
views
Huge discrepancy between response times reported by New Relic agent on Wildfly and Jetty and reported on HAProxy
We have a Java EJB application hosted on Wildfly 15 which has a lightweight Web API service hosted on Jetty 9 in front of it.
The Web API service just deserialises json requests from the clients and ...
0
votes
1
answer
393
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
2
answers
619
views
New Relic APM agent VS New Relic OpenTelemetry for Quarkus microservices monitoring and observability
I have a Quarkus application (consuming/producing messages from multiple Kafka topics) deployed on an AWS Kubernetes cluster. I want to monitor/observe my application. Right now, I am using the ...
1
vote
0
answers
187
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....
0
votes
0
answers
188
views
NewRelic (newrelic-react-native-agent) PrivacyInfo.xcprivacy issue on Appstore submission
I have integrated NewRelic plugin (newrelic-react-native-agent) within my React Native app, the app works fine locally as well as on Testflight, but when I submit the app for Apple review on Appstore, ...
1
vote
0
answers
28
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
vote
1
answer
494
views
How to get HikariCP metrics to show properly in NewRelic?
We have a custom webapp hat is using HikariCP. The application is compiled into a jar and then started in a docker container. Depending on the environment we are loading the newrelic-agent.jar via the ...
-1
votes
1
answer
406
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: ...
2
votes
1
answer
275
views
All web transactions are categorised as /DispatcherServlet in newrelic
In my application performance monitoring (APM) dashboard, all API transactions across my microservices are grouped under /DispatcherServlet. The microservices are built using Spring Boot version 3.1.1 ...
1
vote
0
answers
204
views
Custom Event in golang and exported to New relic
I'm creating a custom event using opentelemetry in golang and exporting that to new relic. To getting that, I'm adding an Event to an span. So far so good.
...
// Start the server span
ctx, span := ...
1
vote
1
answer
325
views
NRI-FLEX Integration Unable to Return the Correct Headers
I am trying to create a NRI-FLEX integration that essentially reports back weather or not a specific service is up or not by curling the service's availability page (https://example.com/meta/...