]> git.proxmox.com Git - pve-manager.git/blame - PVE/Report.pm
ui: ceph: move single used icon into interpolated string
[pve-manager.git] / PVE / Report.pm
CommitLineData
2f7faeed
EK
1package PVE::Report;
2
3use strict;
4use warnings;
180a86d3 5
2f7faeed
EK
6use PVE::Tools;
7
3a0b2c40
TL
8# output the content of all the files of a directory
9my sub dir2text {
10 my ($target_dir, $regexp) = @_;
11
6b72e9dd 12 print STDERR "dir2text '${target_dir}${regexp}'...";
3a0b2c40
TL
13 my $text = '';
14 PVE::Tools::dir_glob_foreach($target_dir, $regexp, sub {
15 my ($file) = @_;
16 $text .= "\n# cat $target_dir$file\n";
17 $text .= PVE::Tools::file_get_contents($target_dir.$file)."\n";
18 });
19 return $text;
20}
21
22# command -v is the posix equivalent of 'which'
23my sub cmd_exists { system("command -v '$_[0]' > /dev/null 2>&1") == 0 }
ee3a8989 24
01c8f6fe 25my $init_report_cmds = sub {
01c8f6fe
TL
26 my $report_def = {
27 general => {
28 title => 'general system info',
f784b925 29 order => 10,
01c8f6fe
TL
30 cmds => [
31 'hostname',
32 'pveversion --verbose',
33 'cat /etc/hosts',
01c8f6fe 34 'pvesubscription get',
ea717e8f
SI
35 'cat /etc/apt/sources.list',
36 sub { dir2text('/etc/apt/sources.list.d/', '.*list') },
8672c64e 37 sub { dir2text('/etc/apt/sources.list.d/', '.*sources') },
01c8f6fe
TL
38 'lscpu',
39 'pvesh get /cluster/resources --type node --output-format=yaml',
40 ],
41 },
8b94e6bb
TL
42 'system-load' => {
43 title => 'overall system load info',
44 order => 20,
45 cmds => [
cdb63825 46 'top -b -c -w512 -n 1 -o TIME | head -n 30',
8b94e6bb
TL
47 'head /proc/pressure/*',
48 ],
49 },
f784b925
TL
50 storage => {
51 order => 30,
52 cmds => [
53 'cat /etc/pve/storage.cfg',
54 'pvesm status',
55 'cat /etc/fstab',
56 'findmnt --ascii',
80e456f6 57 'df --human -T',
ef09450c 58 'proxmox-boot-tool status',
f784b925
TL
59 ],
60 },
61 'virtual guests' => {
62 order => 40,
63 cmds => [
64 'qm list',
65 sub { dir2text('/etc/pve/qemu-server/', '\d.*conf') },
66 'pct list',
67 sub { dir2text('/etc/pve/lxc/', '\d.*conf') },
68 ],
69 },
70 network => {
c5b25c00 71 order => 45,
f784b925
TL
72 cmds => [
73 'ip -details -statistics address',
74 'ip -details -4 route show',
75 'ip -details -6 route show',
76 'cat /etc/network/interfaces',
77 ],
78 },
79 firewall => {
80 order => 50,
81 cmds => [
82 sub { dir2text('/etc/pve/firewall/', '.*fw') },
83 'cat /etc/pve/local/host.fw',
84 'iptables-save',
85 ],
86 },
87 cluster => {
88 order => 60,
89 cmds => [
90 'pvecm nodes',
91 'pvecm status',
92 'cat /etc/pve/corosync.conf 2>/dev/null',
93 'ha-manager status',
0fb89b4a 94 'cat /etc/pve/datacenter.cfg',
f784b925
TL
95 ],
96 },
8b94e6bb 97 hardware => {
f784b925
TL
98 order => 70,
99 cmds => [
100 'dmidecode -t bios',
f784b925
TL
101 'lspci -nnk',
102 ],
103 },
8b94e6bb 104 'block devices' => {
f784b925
TL
105 order => 80,
106 cmds => [
c4c3ed73 107 'lsblk --ascii -M -o +HOTPLUG,ROTA,PHY-SEC,FSTYPE,MODEL,TRAN',
f784b925
TL
108 'ls -l /dev/disk/by-*/',
109 'iscsiadm -m node',
110 'iscsiadm -m session',
111 ],
112 },
113 volumes => {
114 order => 90,
115 cmds => [
116 'pvs',
117 'lvs',
118 'vgs',
119 ],
120 },
01c8f6fe 121 };
1cf7db21 122
fb925d65 123 if (cmd_exists('zfs')) {
f784b925 124 push @{$report_def->{volumes}->{cmds}},
fb925d65
TL
125 'zpool status',
126 'zpool list -v',
127 'zfs list',
c46eb47e 128 'arcstat',
fb925d65
TL
129 ;
130 }
1cf7db21 131
01c8f6fe 132 if (-e '/etc/ceph/ceph.conf') {
f784b925 133 push @{$report_def->{volumes}->{cmds}},
c83c3d45
TL
134 'pveceph status',
135 'ceph osd status',
136 'ceph df',
137 'ceph osd df tree',
ea4d55c9 138 'ceph device ls',
c83c3d45
TL
139 'cat /etc/ceph/ceph.conf',
140 'ceph config dump',
141 'pveceph pool ls',
142 'ceph versions',
143 ;
01c8f6fe 144 }
2f7faeed 145
1226cd97 146 if (cmd_exists('multipath')) {
f784b925 147 push @{$report_def->{disks}->{cmds}},
1226cd97
ML
148 'cat /etc/multipath.conf',
149 'cat /etc/multipath/wwids',
fb925d65
TL
150 'multipath -ll',
151 ;
1226cd97 152 }
2f7faeed 153
01c8f6fe
TL
154 return $report_def;
155};
2f7faeed 156
2f7faeed 157sub generate {
f784b925 158 my $def = $init_report_cmds->();
01c8f6fe 159
3a0b2c40 160 my $report = '';
ee3a8989
TL
161 my $record_output = sub {
162 $report .= shift . "\n";
163 };
164
73cdcc98
TL
165 local $ENV{'PATH'} = '/sbin:/bin:/usr/sbin:/usr/bin';
166 my $cmd_timeout = 10; # generous timeout
167
ee3a8989
TL
168 my $run_cmd_params = {
169 outfunc => $record_output,
170 errfunc => $record_output,
171 timeout => $cmd_timeout,
172 noerr => 1, # avoid checking programs exit code
173 };
174
f784b925 175 my $sorter = sub { ($def->{$_[0]}->{order} // 1<<30) <=> ($def->{$_[1]}->{order} // 1<<30) };
2c4ef55e 176
f784b925
TL
177 for my $section ( sort { $sorter->($a, $b) } keys %$def) {
178 my $s = $def->{$section};
179 my $title = $s->{title} // "info about $section";
2f7faeed
EK
180
181 $report .= "\n==== $title ====\n";
f784b925 182 for my $command (@{$s->{cmds}}) {
ee3a8989
TL
183 eval {
184 if (ref $command eq 'CODE') {
3a0b2c40 185 $report .= PVE::Tools::run_with_timeout($cmd_timeout, $command);
ee3a8989 186 } else {
01c8f6fe 187 print STDERR "Process ".$command."...";
ee3a8989
TL
188 $report .= "\n# $command\n";
189 PVE::Tools::run_command($command, %$run_cmd_params);
190 }
2bdf85f8 191 print STDERR "OK";
ee3a8989 192 };
2bdf85f8 193 print STDERR "\n";
ee3a8989 194 $report .= "\nERROR: $@\n" if $@;
2f7faeed
EK
195 }
196 }
ee3a8989
TL
197
198 return $report;
2f7faeed 199}
2c4ef55e
TL
200
2011;