Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
26 views

Problem I'm trying to set up Datadog APM tracing for my AWS Lambda functions (Node.js/TypeScript), but traces are not appearing in the Datadog APM UI. Custom metrics are being collected successfully, ...
Rami Rosenblum's user avatar
0 votes
2 answers
65 views

I’m trying to measure the exact time spent in each stage of my API request flow — starting from the browser, through Nginx, into Django, then the database, and back out through Django and Nginx to the ...
Smruti Ranjan Sahu's user avatar
1 vote
0 answers
78 views

Does Istio’s VirtualService routing and header manipulation apply to tracing traffic generated by istio-proxy itself? Here’s the situation: I have Istio configured to send spans to an external tracing ...
Norbert's user avatar
  • 11
0 votes
1 answer
119 views

I have complicated Python code which I wish to trace. I want to have a log file that will list all function calls in the order in which they are called, and for each call: the current call stack ...
Yair M's user avatar
  • 499
2 votes
0 answers
39 views

OTP 27 offers two tracing modules: trace and seq_trace. They both seem to do the same thing, except the other one is called "sequential". What does this mean and what is the difference ...
radrow's user avatar
  • 7,413
0 votes
0 answers
42 views

I have a question when using opentelemetry and skywalking. In java project, use opentelemetry to generate trace and span infomation, then I want to collect these trace to skywalking aop to analysis ...
user9515133's user avatar
1 vote
1 answer
246 views

I’m seeing confusing / broken graphs in the Langfuse dashboard for multi-agent traces and I’m not sure if it’s a Langfuse bug or something I’m doing wrong. What I did: I run a multi-agent system using ...
SohilP25's user avatar
0 votes
0 answers
40 views

I'm trying to solve a perf issue in my Android library. I use androidx.tracing to add trace events in system trace. My question is that should I use trace() or traceAsync() for a suspend function? ...
Jing-Wei Wu's user avatar
1 vote
1 answer
155 views

I'm writing a Pingora proxy instance. It uses multiple async functions from a trait to indicate various stages. There is a common context that I can provide. I am trying to instrument the whole ...
Daniel A. White's user avatar
0 votes
0 answers
60 views

I'm working on a Flutter app and want to improve my error reporting, especially for async errors. I came across the stack_trace package and its Chain.capture method, which seems to provide much better ...
Rami Dhouib's user avatar
1 vote
0 answers
188 views

I suspect this is not possible, but someone may have an interesting solution. I want to set the TraceId on a gRPC call. This will allow me continuity of trace across a variety of boundaries. For ...
Oybon's user avatar
  • 31
0 votes
0 answers
229 views

I'm trying to build a basic WhatsApp bot using the @whiskeysockets/baileys library. I’ve set up the bot to connect using QR authentication, and it connects successfully. However, when I send or ...
Muhammad Ahmed's user avatar
1 vote
1 answer
93 views

Using tracing_subscriber, How can I log span duration with Rust tracing? explains how to trace span durations. But I have a lot, and I only want to see slow ones. I have tried this but I'm not sure ...
jnnnnn's user avatar
  • 4,525
1 vote
1 answer
63 views

I'm building a custom Python debugger using sys.settrace() to inspect and log execution events. My script accepts a .py input fil eas a parameter and inspects every event within it using: code_str = ...
dheb's user avatar
  • 55
0 votes
1 answer
121 views

I have a somewhat global issue, I don’t know if someone can help me, I’m working on a big project with a somewhat old codebase, I’m trying to find a solution but I feel like there’s nothing on the ...
ShortBuzz ShortBuzz's user avatar
1 vote
0 answers
77 views

I'm doing an in-depth CPU microarchitectural resource analysis. I want to know the requirements of my program on processor microarchitectural resources and compare the requirements of different ...
Gerrie's user avatar
  • 455
0 votes
0 answers
49 views

I have a .NET console application where I want to add Open telemetry traces to be sent to Grafana. The app does not use Service Collection and DI. Instead we use the AppBuilder for all the application ...
Anu Burra's user avatar
0 votes
0 answers
47 views

TL;DR: I implemented a clumsy way to track a search request through various points in the network. Is there a better way? I'm using the Elasticsearch SDK to perform searches. The search call traverses ...
chris's user avatar
  • 63
6 votes
1 answer
157 views

How to print every line of a php script as it's being executed? For example in Python you can do $ cat test.py import time print('hello') time.sleep(3) print('goodbye') $ python -m trace -t test.py ...
hanshenrik's user avatar
  • 22.4k
1 vote
0 answers
147 views

I'm using VizTracer to debug performance issues in my PyTorch data loading pipeline. Specifically, I'm using a DataLoader with num_workers > 0 to load data in parallel using multiple subprocesses. ...
Raul Sofia's user avatar
1 vote
2 answers
50 views

I know how to use coverage module to get "human readable" coverage output (using popular third party coverage module). This can be used with pytest or unittest (with some differences in the ...
Amit's user avatar
  • 2,138
0 votes
1 answer
65 views

(This post is based on a mailing list post I submitted yesterday) I'm writing a userspace application that interacts directly with perf_event_open() in order to trace control flow with Intel PT. ...
Edd Barrett's user avatar
  • 3,685
2 votes
0 answers
143 views

I am attempting to capture events from sched/sched_block_reason on a Linux system, with the eventual goal of getting sched/sched_block_reason working with a visualization tool called Perfetto. This ...
Ken Lin's user avatar
  • 1,035
0 votes
1 answer
66 views

sys.settrace and Bdb.trace_dispatch can trace events. But the "line" event is triggered before the execution of the line. I'm trying to get information exactly after the line being executed, ...
Phuturesh's user avatar
0 votes
1 answer
342 views

I've implemented Otel for my python app sending telemetry to GCP backend. I'm seeing these trace spans for https://otel-collector-xxx.asia-southeast1.run.app/opentelemetry.proto.collector.metrics.v1....
Deepanshu Kalra's user avatar
16 votes
1 answer
657 views

I have encountered two instances where it seems that R treats obj and print(obj) differently. I would like to know more about the nature of this difference. First instance I can run trace("print....
Quasimodo's user avatar
  • 508
2 votes
0 answers
99 views

I have a question regarding ETW (Event Tracing for Windows) programming. My goal is simple: I want to use ETW base program to record every user-launched program on Windows. I have already implemented ...
Tyler's user avatar
  • 111
0 votes
0 answers
48 views

Is it possible for a process to probe dtrace/perf/etc USDTs for its own process (or even better, process group or uid) without needing elevated privileges or being able to trace processes with other ...
Craig Ringer's user avatar
0 votes
0 answers
28 views

I was looking for how to echo commands to the console as a Python script is executing. Google pointed me to the trace module, but what I found online shows that it must be specified when invoking ...
user2153235's user avatar
  • 1,265
0 votes
0 answers
65 views

Environment and Project Visual Studio 2022 Kernel Mode Driver (KMDF) Trace Lines TraceEvents(TRACE_LEVEL_INFORMATION, TRACE_DRIVER, "%!FUNC! Entry"); TraceEvents(TRACE_LEVEL_ERROR, ...
Sarah Weinberger's user avatar
0 votes
1 answer
72 views

So for example if I have this python code def adder(x,y): return x + y So I am tracing the values of variables for python source code and I want to run the sys.settrace using my trace function on ...
Anuj Kumar's user avatar
0 votes
0 answers
33 views

I want to analyze the impact of different microarchitecture designs on a certain workload, so I would like to collect traces on a machine running that workload and use those traces in the gem5 ...
Frontier_Setter's user avatar
0 votes
0 answers
25 views

I'm working on a script that logs messages using rsyslog, and I want to calculate the total size of log entries (traces) generated per minute. My rsyslog configuration is set up to rotate logs based ...
pari's user avatar
  • 195
0 votes
1 answer
203 views

Initially I had such logging configuration in my spring boot 3.4 app: logging: ... pattern: file: "%d [%thread] %-5level %-50logger{40}- %n" console: "%d [%thread]%-...
gstackoverflow's user avatar
0 votes
1 answer
67 views

I have an application based on spring boot 3.4 I have application.properties with lines: management.tracing.sampling.probability=1 management.zipkin.tracing.export.enabled=false and dependencies: // ...
gstackoverflow's user avatar
2 votes
0 answers
80 views

My Linux system is WSL2 with kernel-5.15.133, and I wrote a eBPF codes to count calling of kmalloc in kernel with kprobe. The code failed with kprobe attach failed: Invalid argument. // ...
wangt13's user avatar
  • 1,307
0 votes
1 answer
58 views

Based on official spring boot documentation Propagating Traces To automatically propagate traces over the network, use the auto-configured RestTemplateBuilder, RestClient.Builder or WebClient.Builder ...
gstackoverflow's user avatar
0 votes
1 answer
77 views

I have spring boot 3.4 application configured for metrics. I've added dependencies: implementation("io.micrometer:micrometer-tracing-bridge-otel") implementation("io....
gstackoverflow's user avatar
0 votes
1 answer
111 views

I have a method annotated with @Observed annotation: @Observed( name = "foo", contextualName = "foo", ) fun foo(arg1: String, arg2: Integer){...} When I go to Zipkin I see ...
gstackoverflow's user avatar
0 votes
1 answer
338 views

I try to add observability support to my spring boot 3 application and I've found out that by default there only 10% of traces are collected. To collect all traces I've added following config ...
gstackoverflow's user avatar
0 votes
0 answers
29 views

I’m working on a project with the following goal: extract a self-contained set of Python modules and their corresponding test cases from a PyPI package, so that this extracted code (plus tests) can ...
duidui's user avatar
  • 1
-1 votes
1 answer
463 views

I read spring boot documentaion about observability and see the section about Baggage You can create baggage with the Tracer API: @Component class CreatingBaggage { private final Tracer tracer; ...
gstackoverflow's user avatar
0 votes
0 answers
109 views

I am running Grafana Tempo with the example docker-compose local configuration from https://github.com/grafana/tempo/tree/main/example/docker-compose/local. To keep the traces clear, I disabled the ...
Sha's user avatar
  • 172
0 votes
0 answers
12 views

I am trying to show a scatter plot in plotly express (to my understanding PX is the way to go since I can tweak the traces for formatting efficiently) This is what I got from searching online import ...
Jung Hun Kim's user avatar
0 votes
1 answer
30 views

I would like to track the functions invoked by pytest test cases. I use this test file in xarray as an example. I use the following command to trace python -m trace --trackcalls --module pytest -rA ...
Richard Hu's user avatar
0 votes
0 answers
48 views

I am developing a microservices system in PHP and have implemented a TraceContext class to manage trace information (trace_id, span_id, parent_id). My goal is to send this information to an ...
Raúl Blázquez's user avatar
0 votes
0 answers
93 views

I'm using OpenTelemetry to track a Kafka message throughout its entire lifespan. Here's my current approach: On the sender side, I extract the Activity.Id (which contains both TraceId and SpanId), ...
Fernando Silva's user avatar
0 votes
1 answer
191 views

We have a .NET Framework 4.8 WCF client that has tracing enabled. Problem is that the trace file is over 10GB and counting. I want to implement a circular trace file microsoft link. I took file ...
daily_driver's user avatar
2 votes
1 answer
93 views

I have a microbenchmark which I'm using to generate memory traffic. I've profiled the application and it seems to constantly hit in L1 cache. I have a Core i5-7260U. I want to understand the actual ...
jkang's user avatar
  • 579
2 votes
0 answers
79 views

When I create a chrome trace (in protobuf binary or json format) and open it in Perfetto, it shows thread activity as in the example below. I would like Perfetto to draw an arrow between rows ...
Lolo's user avatar
  • 4,219

1
2 3 4 5
57