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.)
Questions tagged [apm]
251 questions
0
votes
1 answer
Is there an ID that will uniquely group all the logs - APM Elasticsearch
When I run the command show below, I get the logs of the per each transaction made on a single activity (from start to end).
GET /apm-*-transaction/_search
{
"size": 100,
"query": {
"range": {
"@timestamp": {
"gte":…

MarkCo
- 810
- 2
- 12
- 29
0
votes
0 answers
apm SetCustom function causing random panic
i have written a Golang app using GIN middleware with apm enabled and facing a problem which is random in nature.
for enabling the APM and elastic search monitoring i have used the middleware like below
func NewRouter() *gin.Engine {
…

iron_man83
- 67
- 2
- 9
0
votes
1 answer
Retrieve transactions from APM using NEST
I have an asp.net core web app application that will write logs using serilog to elasticsearch and also can read the logs from elasticsearch using NEST. I also have it set up where I can use APM for my application. If I wanted to retrieve the…

NoviceCoder
- 449
- 1
- 9
- 26
0
votes
0 answers
Connection to APM Server timed out (url: http://localhost:8200/intake/v2/events
I have a configuration as follows:
Single elastic node (separate from the rest)
Kibana setup on a separate node
APM server on it's own node
Flask Application set up on an it's own node.
Versions:
Kibana and Elastic (opendistro): v 7.10.2
APM OSS:…

ribbit
- 79
- 2
- 13
0
votes
1 answer
How to correlate logs in elasticsearch
I have a asp.net core web app (mvc) project that writes logs to elasticsearch and read logs from elasticsearch when certain things happen in the application.
Is there a way you could correlate logs that occur within the same browser transaction?…

NoviceCoder
- 449
- 1
- 9
- 26
0
votes
1 answer
What is a service in APM?
from the docs of APM: https://www.elastic.co/guide/en/apm/get-started/7.12/transactions.html
Transactions are a special kind of span that have additional
attributes associated with them. They describe an event captured by an
Elastic APM agent…

David
- 2,926
- 1
- 27
- 61
0
votes
1 answer
What is a span in APM?
From the docs: https://www.elastic.co/guide/en/apm/get-started/7.12/transaction-spans.html
Spans contain information about the execution of a specific code path. They measure from the start to the end of an activity, and they can have a parent/child…

David
- 2,926
- 1
- 27
- 61
0
votes
1 answer
Is it possible to duplicate traffic data with AWS R53
For now I have R53 record for APM server which is writing data to ES.
I want to create another ES cluster and I want to check performance first for new cluster. For that - I want to create another instance with APM server, which will be use new ES…

prosto.vint
- 1,403
- 2
- 17
- 30
0
votes
0 answers
APM-Agent Attach to Jenkins Application returns 403 No Valid Crumb was includes in request
I have setup Apm-server in ELK server and Apm-agent in which Jenkins is running.
APM Agent cant send data to APM server because of below error
Command:
java -jar /etc/apmagents/apm-agent-attach-standalone.jar \
--continuous \
--config…

kc7
- 113
- 4
- 18
0
votes
2 answers
How to create multiple services using opentelemetry java sdk?
I have an application which is made up of multiple services built in proprietary language. I want to collect traces and ingest into Jaeger or APM solution. There is no instrumentation library. However, these services produce traces in a proprietary…

Mac
- 497
- 5
- 22
0
votes
1 answer
Apache Skywalking - Instrumentation of Application Classes
I have recently started exploring skywalking as APM tool.
I am interested in looking at the time spent by methods/functions at application layer. Basically a instrumentation sort of thing for the JAVA application. With Skywalking I just get 3…

Sel_va
- 588
- 5
- 25
0
votes
1 answer
How to monitor user clicks with APM React
I'm using ElasticSearch APM RUM in a React application.
Now, I already integrated the APM to the router, so that I can see the route-change transactions in Kibana.
Now I want to track user clicks on a specific button, to see, for example, how many…

baruchiro
- 5,088
- 5
- 44
- 66
0
votes
1 answer
instrumentation.retransformClasses() throwing fatal error
I am trying to develop a javaagent. It also provides support for annotations.
In the preMain method I am trying to scan the classpath for annotations. Then adding the transformer using instrumentatino.addTransformer() method.
Because the classes are…

Yasin
- 1,906
- 1
- 21
- 37
0
votes
1 answer
APM - How to healthcheck a background program?
We have,
two GoLang microservices(http server)
&
one GoLang background program(running infinite loop).
Within micro-service, we have added diagnostic endpoint point(http port), to provide health-check of service. Grafana monitoring tool talks to…

overexchange
- 15,768
- 30
- 152
- 347
0
votes
1 answer
Elastic apm - Disable transaction/span programatically for specific endpoint
I am using elastic-apm with spring application to monitor API requests and track all SQL's executed for given endpoint. The problem is give the amount of traffic elastic search is collecting huge magnitude of data and I would like to enable…

Rhishi Nema
- 169
- 3
- 10