Changes between Initial Version and Version 1 of StatsXml


Ignore:
Timestamp:
Apr 25, 2007, 1:06:48 PM (17 years ago)
Author:
Nicolas
Comment:

Converted by an automatic script

Legend:

Unmodified
Added
Removed
Modified
  • StatsXml

    v1 v1  
     1= Aggregate statistics data =
     2
     3      The following are proposed formats for project statistics data to be distributed by aggregators. Much of this has been implemented by James Drews; the export files are at [http://boinc.netsoft-online.com/stats/ http://boinc.netsoft-online.com/stats/]
     4
     5and the web RPCs for hosts are at
     6
     7[http://boinc.netsoft-online.com/get_host.php?cpid=???? http://boinc.netsoft-online.com/get_host.php?cpid=????]
     8
     9(based on the host with the highest expavg_credit) and
     10
     11http://boinc.netsoft-online.com/get_host_tot.php?cpid=????
     12
     13(based on the host with the highest total_credit).
     14
     15http://boinc.netsoft-online.com/get_user.php?cpid=????
     16
     17(returns info on the user with given CPID).
     18
     19
     20== Files ==
     21
     22=== user_total_credit.xml ===
     23 A list of top users, ordered by decreasing cross-project total credit. Should include at least top 100 users.
     24{{{
     25    <users>
     26        <nusers>100</nusers>
     27        <time>1129844599</time>   (when this file was generated)
     28        <total_credit>4983146120.8639</total_credit> (summed over all users)
     29        <expavg_credit>17827453.354517</expavg_credit>
     30        <user>
     31            <name>John Keck</name>
     32            <total_credit>42698.813543</total_credit>
     33            <expavg_credit>117348.653646</expavg_credit>
     34            <user_cpid>283472938743489759837498347</user_cpid>
     35            <world_rank>1</world_rank>
     36            <project>
     37                <name>SETI@home</name>
     38                <url>http://setiathome.berkeley.edu</url>
     39                <total_credit>2698.813543</total_credit>
     40                <expavg_credit>17348.653646</expavg_credit>
     41                <id>123</id>
     42                <country>United States</country>
     43                <user_name>John Keck</user_name>
     44                <create_time>1104210399</create_time>
     45                <team_name>My Team</team_name>
     46                <team_id>44</team_id>
     47                <user_url>foobar.example.com</user_url>
     48                <computer_count>44</computer_count>
     49            </project>
     50            ... other projects
     51        </user>
     52        ... other users
     53    </users>
     54}}}
     55
     56=== user_expavg_credit.xml ===
     57 A list of top users, ordered by decreasing cross-project recent average credit. Should include at least top 100 users. Same format as above.
     58=== host_total_credit.xml ===
     59
     60{{{
     61    <hosts>
     62        <nhosts>100</nhosts>
     63        <time>1129844599</time>   (when this file was generated)
     64        <host>
     65            <total_credit>0.000000</total_credit>
     66            <expavg_credit>0.000000</expavg_credit>
     67            <p_vendor>GenuineIntel</p_vendor>
     68            <p_model>Pentium</p_model>
     69            <os_name>Windows XP</os_name>
     70            <os_version>5.1</os_version>
     71            <create_time>1040170006</create_time>
     72            <timezone>28800</timezone>
     73            <ncpus>2</ncpus>
     74            <p_fpops>45724737.082762</p_fpops>
     75            <p_iops>43233895.373973</p_iops>
     76            <p_membw>4032258.064516</p_membw>
     77            <m_nbytes>670478336.000000</m_nbytes>
     78            <m_cache>1000000.000000</m_cache>
     79            <m_swap>1638260736.000000</m_swap>
     80            <d_total>9088008192.000000</d_total>
     81            <d_free>3788505088.000000</d_free>
     82            <n_bwup>24109.794088</n_bwup>
     83            <n_bwdown>57037.049858</n_bwdown>
     84            <host_cpid>xxxxx</host_cpid>
     85            <user_cpid>xxxxx</user_cpid>
     86            <project>
     87                <name>SETI@home</name>
     88                <url>http://setiathome.berkeley.edu</url>
     89                <total_credit>2698.813543</total_credit>
     90                <expavg_credit>17348.653646</expavg_credit>
     91                <id>123</id>
     92            </project>
     93            ... other projects
     94        </host>
     95        ... other hosts
     96    </hosts>
     97}}}
     98
     99=== host_expavg_credit.xml ===
     100 Same, ordered by decreasing recent average credit.
     101
     102
     103== Web RPCs ==
     104
     105=== get_user.php?cpid=xxxxx ===
     106
     107
     108
     109{{{
     110    <user>
     111        <name>John Keck</name>
     112        <total_credit>42698.813543</total_credit>
     113        <expavg_credit>117348.653646</expavg_credit>
     114        <cpid>283472938743489759837498347</cpid>
     115        <project>
     116            <name>SETI@home</name>
     117            <url>http://setiathome.berkeley.edu</url>
     118            <total_credit>2698.813543</total_credit>
     119            <expavg_credit>17348.653646</expavg_credit>
     120        </project>
     121        ... other projects
     122    </user>
     123}}}
     124
     125=== get_host.php?cpid=xxxxx ===
     126
     127{{{
     128    <host>
     129        <total_credit>0.000000</total_credit>
     130        <expavg_credit>0.000000</expavg_credit>
     131        <p_vendor>GenuineIntel</p_vendor>
     132        <p_model>Pentium</p_model>
     133        <os_name>Windows XP</os_name>
     134        <os_version>5.1</os_version>
     135        <create_time>1040170006</create_time>
     136        <timezone>28800</timezone>
     137        <ncpus>2</ncpus>
     138        <p_fpops>45724737.082762</p_fpops>
     139        <p_iops>43233895.373973</p_iops>
     140        <p_membw>4032258.064516</p_membw>
     141        <m_nbytes>670478336.000000</m_nbytes>
     142        <m_cache>1000000.000000</m_cache>
     143        <m_swap>1638260736.000000</m_swap>
     144        <d_total>9088008192.000000</d_total>
     145        <d_free>3788505088.000000</d_free>
     146        <n_bwup>24109.794088</n_bwup>
     147        <n_bwdown>57037.049858</n_bwdown>
     148        <host_cpid>xxxxx</host_cpid>
     149        <user_cpid>xxxxx</user_cpid>
     150        <project>
     151            <name>SETI@home</name>
     152            <url>http://setiathome.berkeley.edu</url>
     153            <total_credit>2698.813543</total_credit>
     154            <expavg_credit>17348.653646</expavg_credit>
     155        </project>
     156        ... other projects
     157    </host>
     158}}}