Giter Site home page Giter Site logo

docc-lab / skua-lttng-modules Goto Github PK

View Code? Open in Web Editor NEW

This project forked from lttng/lttng-modules

0.0 4.0 0.0 2.95 MB

This repo is a mirror of the official lttng-modules git found at git://git.lttng.org/lttng-modules.git. The LTTng modules provide Linux kernel tracing capability to the LTTng 2.x tracer toolset.

Home Page: http://lttng.org/

License: Other

Makefile 0.60% Shell 0.79% C 97.30% C++ 1.27% Perl 0.03%

skua-lttng-modules's Introduction

LTTng-modules

by Mathieu Desnoyers

LTTng kernel modules are Linux kernel modules which make LTTng kernel tracing possible. They include essential control modules and many probes which instrument numerous interesting parts of Linux. LTTng-modules builds against a vanilla or distribution kernel, with no need for additional patches.

Other notable features:

  • Produces CTF (Common Trace Format) natively.
  • Tracepoints, function tracer, CPU Performance Monitoring Unit (PMU) counters, kprobes, and kretprobes support.
  • Have the ability to attach context information to events in the trace (e.g., any PMU counter, PID, PPID, TID, command name, etc). All the extra information fields to be collected with events are optional, specified on a per-tracing-session basis (except for timestamp and event ID, which are mandatory).

Building

To build and install LTTng-modules, you will need to have your kernel headers available (or access to your full kernel source tree), and do:

make
sudo make modules_install
sudo depmod -a

The above commands will build LTTng-modules against your current kernel. If you need to build LTTng-modules against a custom kernel, do:

make KERNELDIR=/path/to/custom/kernel
sudo make KERNELDIR=/path/to/custom/kernel modules_install
sudo depmod -a kernel_version

Kernel built-in support

It is also possible to build these modules as part of a kernel image. Simply run the built-in.sh script with the path to your kernel source directory as an argument. It will symlink the lttng-modules directory in the kernel sources and add an include in the kernel Makefile.

Then configure your kernel as usual and enable the CONFIG_LTTNG option.

Required kernel config options

Make sure your target kernel has the following config options enabled:

  • CONFIG_MODULES: loadable module support (not strictly required when built into the kernel)
  • CONFIG_KALLSYMS: see files in wrapper; this is necessary until the few required missing symbols are exported to GPL modules from mainline
  • CONFIG_HIGH_RES_TIMERS: needed for LTTng 2.x clock source
  • CONFIG_TRACEPOINTS: kernel tracepoint instrumentation (enabled as a side-effect of any of the perf/ftrace/blktrace instrumentation features)

Supported (optional) kernel config options

The following kernel configuration options will affect the features available from LTTng:

  • CONFIG_HAVE_SYSCALL_TRACEPOINTS: system call tracing:

    lttng enable-event -k --syscall
    lttng enable-event -k -a
    
  • CONFIG_PERF_EVENTS: performance counters:

    lttng add-context -t perf:*
    
  • CONFIG_EVENT_TRACING: needed to allow block layer tracing

  • CONFIG_KPROBES: dynamic probes:

    lttng enable-event -k --probe ...
    
  • CONFIG_KRETPROBES: dynamic function entry/return probes:

    lttng enable-event -k --function ...
    
  • CONFIG_KALLSYMS_ALL: state dump of mapping between block device number and name

Usage

Use LTTng-tools to control the tracer. The session daemon of LTTng-tools should automatically load the LTTng kernel modules when needed. Use Babeltrace to print traces as a human-readable text log.

Support

Linux kernels >= 2.6.36 are supported.

Notes

About perf PMU counters support

Each PMU counter has its zero value set when it is attached to a context with add-context. Therefore, it is normal that the same counters attached to both the stream context and event context show different values for a given event; what matters is that they increment at the same rate.

skua-lttng-modules's People

Contributors

abusque avatar agabbasov avatar andre-rosa avatar as-com avatar cminyard avatar compudj avatar dengraf avatar eepp avatar el8 avatar frdeso avatar giraldeau avatar greenscientist avatar houssemmh avatar hsheth2 avatar jbernard avatar jgalar avatar juniskane avatar kelmously avatar larperaxis avatar maxinbjohn avatar mjeanson avatar mogeb avatar nlynch-mentor avatar psrcode avatar pwoegere avatar ralfbaechle avatar simark avatar smarre avatar tahini avatar wallinux avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.