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