Name Date Size #Lines LOC

..17-Apr-2024-

pybootchartgui/H19-Sep-2023-3,4322,547

AUTHORSH A D07-Mar-2021281 129

COPYINGH A D07-Mar-202117.6 KiB341281

MAINTAINERSH A D07-Mar-2021132 43

NEWSH A D07-Mar-20216.7 KiB205183

README.pybootchartH A D07-Mar-20211.4 KiB3827

pybootchartgui.pyH A D07-Mar-2021809 244

README.pybootchart

1			    PYBOOTCHARTGUI
2			   ----------------
3
4pybootchartgui is a tool (now included as part of bootchart2) for
5visualization and analysis of the GNU/Linux boot process. It renders
6the output of the boot-logger tool bootchart (see
7http://www.bootchart.org/) to either the screen or files of various
8formats. Bootchart collects information about the processes, their
9dependencies, and resource consumption during boot of a GNU/Linux
10system. The pybootchartgui tools visualizes the process tree and
11overall resource utilization.
12
13pybootchartgui is a port of the visualization part of bootchart from
14Java to Python and Cairo.
15
16Adapted from the bootchart-documentation:
17
18  The CPU and disk statistics are used to render stacked area and line
19  charts. The process information is used to create a Gantt chart
20  showing process dependency, states and CPU usage.
21
22  A typical boot sequence consists of several hundred processes. Since
23  it is difficult to visualize such amount of data in a comprehensible
24  way, tree pruning is utilized. Idle background processes and
25  short-lived processes are removed. Similar processes running in
26  parallel are also merged together.
27
28  Finally, the performance and dependency charts are rendered as a
29  single image to either the screen or in PNG, PDF or SVG format.
30
31
32To get help for pybootchartgui, run
33
34$ pybootchartgui --help
35
36This code was originally hosted at:
37	http://code.google.com/p/pybootchartgui/
38