[pve-devel] [PATCH] Add some extra debug information to the report.
Fabian Grünbichler
f.gruenbichler at proxmox.com
Tue Jul 5 11:35:35 CEST 2016
comments inline
On Tue, Jul 05, 2016 at 11:20:02AM +0200, Wolfgang Link wrote:
> There were no useful information about block device.
> ---
> PVE/Report.pm | 17 +++++++++++++++--
> 1 file changed, 15 insertions(+), 2 deletions(-)
>
> diff --git a/PVE/Report.pm b/PVE/Report.pm
> index 4d15ef5..99beca2 100644
> --- a/PVE/Report.pm
> +++ b/PVE/Report.pm
> @@ -12,7 +12,9 @@ my @general = ('hostname', 'pveversion --verbose', 'cat /etc/hosts', 'top -b -n
>
> my @storage = ('cat /etc/pve/storage.cfg', 'pvesm status', 'cat /etc/fstab', 'mount', 'df --human');
>
> -my @volumes = ('lvdisplay', 'vgdisplay', 'zpool status', 'zfs list');
> +my @volumes = ( "lvs", "vgs';'", 'zpool status', 'zfs list');
> +
this is broken: "vgs';'"
> +my @disks = ('lsblk', 'multipath-tools -ll', 'multipath-tools -v3');
>
> my @machines = ('qm list', sub { dir2text('/etc/pve/qemu-server/', '\d.*conf') });
>
> @@ -62,7 +64,18 @@ my $bios_report = {
> commands => \@bios,
> };
>
> -my @global_report = ($general_report, $storage_report, $volume_report, $net_report, $cluster_report, $bios_report);
> +my $disks_report = {
> + title => 'info about teh disks',
> + commands => \@disks,
> +};
> +
typo: s/teh/the/
> +my $volumes_report = {
> + title => 'info about the volumes',
> + commands => \@volumes,
> +};
> +
> +my @global_report = ($general_report, $storage_report, $volume_report, $net_report,
> + $cluster_report, $bios_report, $disks_report, $volumes_report);
>
> # output the content of all the files of a directory
> sub dir2text {
> --
> 2.1.4
>
>
> _______________________________________________
> pve-devel mailing list
> pve-devel at pve.proxmox.com
> http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
>
More information about the pve-devel
mailing list