Changes between Initial Version and Version 1 of XmlStats


Ignore:
Timestamp:
Apr 29, 2007, 4:30:36 PM (17 years ago)
Author:
Nicolas
Comment:

Converted by an automatic script

Legend:

Unmodified
Added
Removed
Modified
  • XmlStats

    v1 v1  
     1= Project statistics data =
     2
     3Projects export statistics data in XML-format files. Most projects regenerate the files every 24 hours. These files are contained in a download directory, usually PROJECT_URL/stats/.
     4
     5The download directory contains the following files:
     6
     7
     8
     9||''''''tables.xml''''''||This gives the total number of records for each entity type (team, user, and host). It also includes the UNIX time when the files were last generated, and a list of the project's applications, with counts of various things.  For example:
     10{{{<tables>
     11    <update_time>1046220857</update_time>
     12    <nusers>127</nusers>
     13    <nteams>14</nteams>
     14    <nhosts>681</nhosts>
     15    <total_credit>1234.234</total_credit>
     16    <applications>
     17        <application>
     18            <name>setiathome</name>
     19            <results_unsent>100</results_unsent>
     20            <results_in_progress>1000</results_in_progress>
     21            <results_over>10000</results_over>
     22        </application>
     23        ...
     24    </applications>
     25</tables>
     26}}}
     27||
     28||'''host.gz'''||List of hosts||
     29||'''team.gz'''||List of teams||
     30||'''user.gz'''||List of users||
     31
     32
     33The format of the various XML elements in the output files is as follows.  Notes:
     34
     35
     36 * <cpid> ('[CrossProjectId cross-project identifier]') is a unique identifier across multiple projects. Accounts with the same email address on different projects will have the same cross-project identifier (as long as at least one computer is attached to both accounts).
     37 * All 'expavg_credit' values were computed at some point in the past (given by 'expavg_time'). To compute their current values, they must be scaled according to the formula given [CreditSystem here].
     38
     39
     40
     41'''Team summary'''
     42
     43
     44{{{
     45<team>
     46 <id>5</id>
     47 <name>Broadband Reports Team Starfire</name>
     48 <total_credit>153402.872429</total_credit>
     49 <expavg_credit>503030.483254</expavg_credit>
     50 <expavg_time>1087542007.701900</expavg_time>
     51 <nusers>14</nusers>
     52</team>
     53}}}
     54 '''User summary'''
     55
     56
     57{{{
     58<user>
     59 <id>12</id>
     60 <name>John Keck</name>
     61 <total_credit>42698.813543</total_credit>
     62 <expavg_credit>117348.653646</expavg_credit>
     63 <expavg_time>1087542007.701900</expavg_time>
     64 <cpid>283472938743489759837498347</cpid>
     65 [ <teamid>5</teamid> ]
     66 [ <has_profile/> ]
     67</user>
     68}}}
     69 '''Host summary '''
     70
     71
     72{{{
     73<host>
     74  <id>102</id>
     75  <userid>3</userid>
     76  <total_credit>0.000000</total_credit>
     77  <expavg_credit>0.000000</expavg_credit>
     78  <expavg_time>1087542007.701900</expavg_time>
     79  <p_vendor>GenuineIntel</p_vendor>
     80  <p_model>Pentium</p_model>
     81  <os_name>Windows XP</os_name>
     82  <os_version>5.1</os_version>
     83  <create_time>1040170006</create_time>
     84  <timezone>28800</timezone>
     85  <ncpus>2</ncpus>
     86  <p_fpops>45724737.082762</p_fpops>
     87  <p_iops>43233895.373973</p_iops>
     88  <p_membw>4032258.064516</p_membw>
     89  <m_nbytes>670478336.000000</m_nbytes>
     90  <m_cache>1000000.000000</m_cache>
     91  <m_swap>1638260736.000000</m_swap>
     92  <d_total>9088008192.000000</d_total>
     93  <d_free>3788505088.000000</d_free>
     94  <n_bwup>24109.794088</n_bwup>
     95  <n_bwdown>57037.049858</n_bwdown>
     96  <avg_turnaround>465609.562145</avg_turnaround>
     97  <host_cpid>e129b5fa44ed8ba58e41c472822f2807</host_cpid>
     98</host>
     99}}}