IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 42276 for trunk/ippMonitor


Ignore:
Timestamp:
Sep 2, 2022, 11:11:31 AM (4 years ago)
Author:
cclin33
Message:

ccl: update links in storage part

Location:
trunk/ippMonitor/raw
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippMonitor/raw/czartool_labels.php

    r42275 r42276  
    208208$svnlink = "https://svn.pan-starrs.ifa.hawaii.edu/trac/ipp";
    209209$conflink = "https://panstarrs.atlassian.net";
    210 $jiralink = "https://panstarrs.atlassian.net";
    211210$hsttime1 = date("Y-m-d H:i:s", strtotime("$lastUpdateTime"));
    212211$utctime1 = gmdate("Y-m-d H:i:s", strtotime("$lastUpdateTime"));
     
    242241echo "<tr><td>Documentations for IPP</td>
    243242          <td><a href=\"$conflink/wiki/spaces/IPPCZAR/pages/679903282/Czarblog+Roll\" target=new><font color=\"blue\">Czarblog</font></a>
    244   &nbsp|&nbsp <a href=\"$conflink/wiki/spaces/IPPCZAR/overview\" target=new><font color=\"blue\">Confluence</font></a>
    245   &nbsp|&nbsp <a href=\"$jiralink/issues/?filter=-4\" target=new><font color=\"blue\">Jira</font></a>
     243  &nbsp|&nbsp <a href=\"$conflink/wiki/spaces/IPPCZAR/pages/678634250/Czar+Guidelines\" target=new><font color=\"blue\">Czar guidelines</font></a>
     244  &nbsp|&nbsp <a href=\"$conflink/browse/IPP-86\" target=new><font color=\"blue\">ippMonitor Jira</font></a>
     245  &nbsp|&nbsp <a href=\"$conflink/wiki/spaces/IKB/pages/678298859/IPP+Hardware+Status\" target=new><font color=\"blue\">Hardware</font></a>
    246246  &nbsp|&nbsp <a href=\"$svnlink/\" target=new><font color=\"blue\">trac</font></a>
    247   &nbsp|&nbsp <a href=\"$jiralink/browse/IPP-86\" target=new><font color=\"blue\">Jira-ippMonitor</font></a>
    248247  </td></tr>";
    249248echo "<tr><td>Current nightly science status</td>
     
    16161615    echo "    <div style=\"font-size: 12px; height: 14px; border: 1px solid; background-color: #bbbbbb\"><center>Down | Repair</div>";
    16171616    echo "    <div style=\"font-size: 12px; height: 14px; border: 1px solid; background-color: #ffffff\"><center>Power Off</div>";
    1618     echo "    <div style=\"font-size: 12px; height: 14px; border: 1px solid; background-color: #ffffff\"><center>
    1619                  <a href=\"https://confluence.ipp.ifa.hawaii.edu/display/IKB/IPP+Hardware+Status#IPPHardwareStatus-StorageNodes\" target=new><font color=\"blue\">Notes</font></a></div>";
    16201617    echo "  </div>";
    16211618    echo "</div>";
     
    16301627    echo "     'free', {type: 'string', role: 'style'}, {type: 'string', role: 'tooltip', 'p': {'html': true}}],";
    16311628
    1632     $sql = "SELECT host, format(total,1), format(available,2), format(used,2), writable, readable, format(used/total*100,2) FROM hosts";
     1629    $sql = "SELECT host, format(total,1), format(available,2), format(used,2), writable, readable, format(used/total*100,2) FROM hosts order by host";
    16331630    if ($debug) {echo "$sql<br>";}
    16341631    $qry = $db->query($sql);
  • trunk/ippMonitor/raw/ipp.czar.dat

    r42272 r42276  
    44
    55menulink   | menuselect      | link    | czartool               | czartool_labels.php
    6 menulink   | menuselect      | link    | storage only           | storage.php
     6menulink   | menuselect      | link    | storage status         | storage.php
    77menulink   | menuselect      | link    | mask stats             | maskStats.php
    88menulink   | menuselect      | link    | night summary          | nightSummary.php
  • trunk/ippMonitor/raw/storage.php

    r42272 r42276  
    6565    echo "    <div style=\"font-size: 12px; height: 14px; border: 1px solid; background-color: #bbbbbb\"><center>Down | Repair</div>";
    6666    echo "    <div style=\"font-size: 12px; height: 14px; border: 1px solid; background-color: #ffffff\"><center>Power Off</div>";
    67     echo "    <div style=\"font-size: 12px; height: 14px; border: 1px solid; background-color: #ffffff\"><center>
    68                  <a href=\"https://confluence.ipp.ifa.hawaii.edu/display/IKB/IPP+Hardware+Status#IPPHardwareStatus-StorageNodes\" target=new><font color=\"blue\">Notes</font></a></div>";
    6967    echo "  </div>";
    7068    echo "</div>";
     
    7977    echo "     'free', {type: 'string', role: 'style'}, {type: 'string', role: 'tooltip', 'p': {'html': true}}],";
    8078
    81     $sql = "SELECT host, format(total,1), format(available,2), format(used,2), writable, readable, format(used/total*100,2) FROM hosts";
     79    $sql = "SELECT host, format(total,1), format(available,2), format(used,2), writable, readable, format(used/total*100,2) FROM hosts order by host";
    8280    if ($debug) {echo "$sql<br>";}
    8381    $qry = $db->query($sql);
Note: See TracChangeset for help on using the changeset viewer.