IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 6 and Version 7 of RunningTheDistributionClient


Ignore:
Timestamp:
Jul 9, 2009, 5:48:45 AM (17 years ago)
Author:
Mark Huber
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RunningTheDistributionClient

    v6 v7  
    4141Multiple hosts may be specified as usual.
    4242
    43 Summary information on faults and copy/extract times can be found in the receiveResult table of the mySQL database
    44 
     43Summary information such as faults and copy/extract times can be found in the receiveResult table of the mySQL database, file names and byte size (and other information) in receiveFile:
    4544{{{
    4645  select * from receiveResult where fault>0;
    4746  select * from receiveResult;
    4847}}}
     48
     49Example list of files successfully downloaded (fault=0), size, download time, and extraction time:
     50{{{
     51select receiveResult.file_id,receiveFile.file,receiveResult.dtime_copy,receiveRe
     52sult.dtime_extract,receiveFile.bytes from receiveResult,receiveFile where receiv
     53eResult.fault=0 and receiveResult.file_id=receiveFile.file_id;
     54}}}
     55
     56Is/will there be functionality in ippMonitor to access this information?