Convert LTTngTop to C++ and state system
[lttngtop.git] / src / attributes.txt
1 List of available attributes
2
3 cpu: pointer to first cpu
4 cpus/[cpuid]/perf: pointer to first perf counter for cpu cpuid
5 cpus/[cpuid]/perf/[perfname]/count: count for perf counter perfname on cpu cpuid
6 cpus/[cpuid]/perf/[perfname]/visible: visibility for perf counter perfname on cpu cpuid
7 cpus/[cpuid]/perf/[perfname]/next: pointer to next perf counter in linked list
8 cpus/[cpuid]/task_start: timestamp for the start of current_task
9 cpus/[cpuid]/current_task: pointer to current_task
10 cpus/[cpuid]/next: pointer to next cpu in linked list
11 proc: pointer to first process
12 processes/[tid]/perf: pointer to first perf counter for task tid
13 processes/[tid]/perf/[perfname]/count: count for perf counter perfname on task tid
14 processes/[tid]/perf/[perfname]/visible: visibility for perf counter perfname on task tid
15 processes/[tid]/perf/[perfname]/next: pointer to next perf counter in linked list
16 processes/[tid]/files_history/current: pointer to first file for task tid
17 processes/[tid]/file_history[x]: file history entry for file x (sequential) for task tid
18 processes/[tid]/file_history[x]/file: file entry for file x (sequential) for task tid
19 processes/[tid]/file_history[x]/file/name: file name for file x (sequential) for task tid
20 processes/[tid]/file_history[x]/file/read: bytes read from file x (sequential) for task tid
21 processes/[tid]/file_history[x]/file/write: bytes written to file x (sequential) for task tid
22 processes/[tid]/file_history[x]/file/flag: status flag for file x (sequential) for task tid
23 processes/[tid]/file_history[x]/file/fd: file descriptor for file x (sequential) for task tid
24 processes/[tid]/file_history[x]/file/birth: timestamp for the opening of file x (sequential) for task tid
25 processes/[tid]/file_history[x]/next: pointer to next file history entry in linked list
26 processes/[tid]/files/[fd]: pointer to file entry for file fd for task tid
27 processes/[tid]/threads: pointer to first descendant thread for task tid
28 processes/[tid]/threads/[dtid]: pointer to descendant thread dtid for task tid
29 processes/[tid]/threads/next: pointer to next descendant thread in linked list
30 processes/[tid]/threadparent: pointer to parent thread for task tid
31 processes/[tid]/syscall_info/type: type for last syscall in task tid
32 processes/[tid]/syscall_info/cpu_id: cpuid for last syscall in task tid
33 processes/[tid]/syscall_info/tid: tid for last syscall in task tid
34 processes/[tid]/syscall_info/fd: fd for last syscall in task tid
35 processes/[tid]/tid: tid for task tid
36 processes/[tid]/comm: procname for task tid
37 processes/[tid]/pid: pid for task tid
38 processes/[tid]/ppid: ppid for task tid
39 processes/[tid]/birth: timestamp for beginning of task tid
40 processes/[tid]/totalfileread: bytes read from all files for task tid
41 processes/[tid]/totalfilewrite: bytes written to all files for task tid
42 processes/[tid]/read: read stream (B/s) for task tid
43 processes/[tid]/write: write stream (B/s) for task tid
44 processes/[tid]/totalcpunsec: execution time (ns) for task tid
45 processes/[tid]/threadstotalcpunsec: execution time (ns) for task tid and its descendants
46 processes/[tid]/selected: whether the task tid is selected by the UI
47 perf: pointer to first perf counter in global list
48 perf/[perfname]/count: global count for perf counter perfname
49 perf/[perfname]/visible: visibility of gloabl perf counter perfname
50 perf/[perfname]/sort: whether the global perf counter list is sorted by perf counter perfname's count
51 perf/[perfname]/next: next perf counter in linked list
52 nbproc: number of active processes
53 nbnewproc: number of processes created
54 nbdeadproc: number of processes destroyed
55 nbthreads: number of active threads
56 nbnewthreads: number of threads created
57 nbdeadthreads: number of threads destroyed
58 nbfiles: number of active files
59 nbnewfiles: number of files opened
60 nbdeadfiles: number of files destroyed
61
This page took 0.030811 seconds and 4 git commands to generate.