Tagged Questions

Systemtap is tool to probe or trace a running linux system, supporting visibility into both kernel- (its initial focus) and user-space. It uses dynamically loaded probes to gather performance and tracing data about the whole system or just selected processes.

learn more… | top users | synonyms

3
votes
1answer
92 views

Profiling for Wall-TIme

I have an application that I want to profile wrt how much time is spent in various activities. Since this application is I/O intensive, I want to get a report that will summarize how much time is ...
3
votes
1answer
420 views

Systemtap effect on performance

I'm looking for some real information about the effect of systemtap on performance. I know that static kernel probes are documented somewhere on their website (with stats), but what about userspace ...
1
vote
1answer
74 views

Overloaded c++ methods profiling using SystemTap

How can I differentiate between overloaded methods using SystemTap probes? E.g. class A { // ... void doFoo(); void doFoo(int a); // ... }; In a .stp file: probe ...
1
vote
1answer
291 views

utrace patch for linux kernel

I am currently working on a firewall with linux kernel. I want to extract the user space application information by using the utrace feature. I am able to probe event of the kernel space but not of ...
1
vote
4answers
467 views

Checking Linux Kernel Debugging option

How can I know if the standard kernel provided in my linux flavour has got DEBUG KERNEL ENABLED flags selected or not ?? I think DEBUG option should be enabled inorder to use tools like kprobe, ...
1
vote
2answers
919 views

See socket options on existing sockets created by other apps?

I'd like to test whether particular socket options have been set on an existing socket. Ie, pretty much everything you can see in: #!/usr/bin/env python '''See possible TCP socket options''' import ...
0
votes
0answers
71 views

Equal CPU load for a linux kernel module on mono-core and on dual core

I use SystemTap v1.3 to measure CPU load of some linux processes and a kernel module on 2 machines : one is celeron (1GHz / 512 kbytes of cache), the other is Dual core (1,06 GHz / 2048 Kbytes of ...
0
votes
1answer
158 views

Measuring TCP delay from Linux kernel

TCP does not prioritize traffic like IP. When there are a lot of TCP background connections opened that are uploading data (like when BitTorrent is seeding in background) delay may occur for a ...
0
votes
1answer
54 views

SystemTap support for user space application

I want to know how to add support in the systemtap for user space applications.When I am trying to trace any user space program, it is showing that CONFIG_UTRACE not set. Can somebody please help me ...
0
votes
1answer
117 views

Systemtap for production server

I want to use systemtap for extracting details of my linux production server from remote access. I have some of the doubts regarding this: Whether is it necessary to have same kernel in both the ...
0
votes
2answers
60 views

Internals of systemtap

I want to know what actually happens internally when the event written in the tap file occurs and how it is handled?
0
votes
1answer
66 views

Kernel options required for the installation of Systemtap

I want to install kerneltap in ubuntu. I want to know whether if I need to recompile the kernel again then which options should I turn on in the kernel during recompilation.