Questions tagged [apm]

APM generally refers to Application Performance Management. The best in class tools provide real-time access to detailed information about the performance of a system and its components (including transaction tracing, database and external system response times, etc.)

251 questions
2
votes
0 answers

How to avoid APM field explosion exceeding 1024 fields?

We are using ELK APM from NodeJS running in Azure App Service. We currently have APM version 1.7.16. The APM index patterns has 1467 fields, which makes search across all fields fail with this error: "type" : "query_shard_exception", "reason" :…
Nikola Schou
  • 2,386
  • 3
  • 23
  • 47
2
votes
1 answer

APM Tracing with Datadog in Go

I have built a demo REST API in Go with MongoDB as the datastore, with Gin as the HTTP framework. I have followed all of the instructions on the Datadog website, however, am getting traces with little to no information. All that is traced is…
NG235
  • 1,091
  • 12
  • 33
2
votes
0 answers

Datadog not recognizing resource names in a request

I am getting start with DataDog agent for my Go application. I am looking at implementing APM tracing to identify how the API request flows and the functions that are being triggered. In my current app, I have a route that calls another function.…
user782400
  • 1,617
  • 7
  • 30
  • 51
2
votes
1 answer

Importing OpenTelemetry trace data from Spring Boot application to Elastic APM - views are missing data

I have a Spring Boot application with Spring Cloud Sleuth, OpenTelemetry instrumentation and OpenTelemetry exporter OTLP. This is a gist of dependencies: spring-cloud-starter-sleuth without Brave, because we are using OpenTelemetry…
Uros K
  • 3,274
  • 4
  • 31
  • 45
2
votes
1 answer

uber zap logging to apm server

I'm trying to send logs to the APM server using the uber zap logging library. I've tried their instrumentation module (https://www.elastic.co/guide/en/apm/agent/go/1.x/builtin-modules.html#builtin-modules-apmzap) to do so but it's not working for…
MHY
  • 83
  • 6
2
votes
1 answer

Workaround for session rate-limiting/throttling in LogRocket

Since LogRocket doesn't have an inbuilt way to rate-limit the number of sessions, is there a way to do it by ourselves? Suggestions please.
karthikaruna
  • 3,042
  • 7
  • 26
  • 37
2
votes
0 answers

How to record Level:Error Logs to APM Errors

I have an application that will write logs to elasticsearch using serilog and is running APM on the docker-compose file. For some reason whenever I run the application and perform a task that will cause an error, it will not record on APM Error's…
NoviceCoder
  • 449
  • 1
  • 9
  • 26
2
votes
0 answers

How can I make elastic APM work with AWS xray?

I am planning to deploy ELK to monitor my application running in AWS. My apps are using AWS xray for trace data. I am reading the doc about elastic APM to see how to ingest AWS xray to elasticsearch but I can't find any solution. I have read the…
Joey Yi Zhao
  • 37,514
  • 71
  • 268
  • 523
2
votes
2 answers

How do I set custom "trace_id" for Datadog tracing?

How do I set custom "trace_id" for Datadog tracing? I searched high and low but can't find an answer to this. I suspect it's not supported. Would really appreciate it if I can get some help here. As an example, if I can do the following in multiple…
Tony Jiang
  • 442
  • 5
  • 16
2
votes
0 answers

elastic-apm-node not register span after express responde

I need to send span to elastic-apm after sending express response. In my code example, i use setInterval. First express response, after 1 second, i try use startspan, but i got error: Cannot read property 'end' of null const apm =…
2
votes
0 answers

Elastic APM HTTP error (404): 404 page not found

Getting error while integrating Elastic APM in the Node Express application. Nodejs: v6.4.2, app.js require('elastic-apm-node').start({ serviceName: config.apm_node.SERVICE_NAME, secretToken: config.apm_node.SECRET_TOKEN, serverUrl:…
Sanjeet kumar
  • 3,333
  • 3
  • 17
  • 26
2
votes
1 answer

No customer header sent when using UbikLoadPack Monitoring plugin for JMeter with Dynatrace

I just started to test the UbikLoadPack Monitoring plugin for JMeter with Dynatrace (OneAgent). While the metrics creation seems to be working just fine, I can’t get the plugin to add any header. My understanding is that UbikLoadPack APM Monitoring…
Joe Moor
  • 45
  • 4
2
votes
0 answers

Missing strackrace in New Relic APM when using Spring WebFlux

Missing strackrace in New Relic APM when using Spring WebFlux I use Spring WebFlux 5.2.3 and Java Agent 5.9.0. When error occurs on APM > Events > Errors I can only see brief error message: Error message Internal Server Error: Internal Server…
pixel
  • 24,905
  • 36
  • 149
  • 251
2
votes
0 answers

How can I search custom header in Elasticsearch apm?

I have a quick question I can not use custom headers for searching by below code. But it is not working. http.request.headers["correlationId"]: "d7fc64cf-d176-4a17-9a8f-66c21b48265d" is it possible by writing any query for searching above code in…
loki
  • 2,926
  • 8
  • 62
  • 115
2
votes
1 answer

Apm-server transaction not recorded in node js agent (express)

Describe the bug Transaction not recorded while i am hit some endpoint, but the apm-server get metric data. To Reproduce I have start apm-server connection in the first file named server.ts const apm = elasticApmNode.start({ serviceName: 'Elk…
1 2
3
16 17