IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 10, 2025, 1:11:48 PM (10 months ago)
Author:
cclin33
Message:

update storage views

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippMonitor/czartool/czartool/CzarDb.pm

    r42858 r42921  
    346346###########################################################################
    347347sub updateHost {
    348     my ($self, $host, $total, $available, $used, $readable, $writable) = @_;
     348    my ($self, $host, $total, $available, $used, $readable, $writable, $xattr) = @_;
    349349
    350350    my $query = $self->{_db}->prepare(<<SQL);
     
    355355    $query = $self->{_db}->prepare(<<SQL);
    356356    INSERT INTO hosts
    357         (host, total, available, used, readable, writable)
     357        (host, total, available, used, readable, writable, xattr)
    358358        VALUES
    359         ('$host', $total, $available, $used, $readable, $writable);
     359        ('$host', $total, $available, $used, $readable, $writable, $xattr);
    360360SQL
    361361    $query->execute;
Note: See TracChangeset for help on using the changeset viewer.