以下は JE2BWM ほかが作成した翻訳 です。 原文は University of California より GFDL で配付されており、 この翻訳も GFDL に従います。
原文: Statistics XML formats   (翻訳対象の更新日付は 5:48 PM UTC, June 09 2006 です)。

統計データの XML 文書形式

boinc.gif
(英語のみ)

以下は、プロジェクト統計データの形式の提案です。 これらの形式で集約した人がデータを配付します。 この機能のほとんどが James Drews さんによって実装されました。 外部提供ファイルは以下のところにあります。

http://boinc.netsoft-online.com/stats/

そして、計算機に対する web RPC は以下のところにあります。

http://boinc.netsoft-online.com/get_host.php?cpid=????

( expavg_credit が高い順に計算機を並べたもの)、および

http://boinc.netsoft-online.com/get_host_tot.php?cpid=????

( total_credit が高い順に計算機を並べたもの)、さらに

http://boinc.netsoft-online.com/get_user.php?cpid=????

(指定した CPID を持つ参加者の情報を返すもの)。

ファイル

user_total_credit.xml

上位の参加者の一覧の一つです。 プロジェクトを横断して合計した功績(credit) が大きい順に並べられています。 少なくとも、上位 100 名を含むべきです。
    <users>
        <nusers>100</nusers>
        <time>1129844599</time>   (このファイルを生成した時刻)
        <total_credit>4983146120.8639</total_credit> (全参加者についての和)
        <expavg_credit>17827453.354517</expavg_credit>
        <user>
            <name>John Keck</name>
            <total_credit>42698.813543</total_credit>
            <expavg_credit>117348.653646</expavg_credit>
            <user_cpid>283472938743489759837498347</user_cpid>
            <world_rank>1</world_rank>
            <project>
                <name>SETI@home</name>
                <url>http://setiathome.berkeley.edu</url>
                <total_credit>2698.813543</total_credit>
                <expavg_credit>17348.653646</expavg_credit>
                <id>123</id>
                <country>United States</country>
                <user_name>John Keck</user_name>
                <create_time>1104210399</create_time>
                <team_name>My Team</team_name>
                <team_id>44</team_id>
                <user_url>foobar.example.com</user_url>
                <computer_count>44</computer_count>
            </project>
 
            ... 他のプロジェクトの情報
        </user>
        ... 他の参加者の情報
    </users>

user_expavg_credit.xml

上位の参加者の一覧の一つです。 プロジェクトを横断して合計した、一日あたりの平均功績 が大きい順に並べられています。 少なくとも、上位 100 名を含むべきです。 前記の形式と同じ形です。

host_total_credit.xml

上位の計算機の一覧の一つです。 プロジェクトを横断して合計した功績(credit) が大きい順に並べられています。
    <hosts>
        <nhosts>100</nhosts>
        <time>1129844599</time>   (このファイルを生成した時刻)
        <host>
            <total_credit>0.000000</total_credit>
            <expavg_credit>0.000000</expavg_credit>
            <p_vendor>GenuineIntel</p_vendor>
            <p_model>Pentium</p_model>
            <os_name>Windows XP</os_name>
            <os_version>5.1</os_version>
            <create_time>1040170006</create_time>
            <timezone>28800</timezone>
            <ncpus>2</ncpus>
            <p_fpops>45724737.082762</p_fpops>
            <p_iops>43233895.373973</p_iops>
            <p_membw>4032258.064516</p_membw>
            <m_nbytes>670478336.000000</m_nbytes>
            <m_cache>1000000.000000</m_cache>
            <m_swap>1638260736.000000</m_swap>
            <d_total>9088008192.000000</d_total>
            <d_free>3788505088.000000</d_free>
            <n_bwup>24109.794088</n_bwup>
            <n_bwdown>57037.049858</n_bwdown>
            <host_cpid>xxxxx</host_cpid>
            <user_cpid>xxxxx</user_cpid>
            <project>
                <name>SETI@home</name>
                <url>http://setiathome.berkeley.edu</url>
                <total_credit>2698.813543</total_credit>
                <expavg_credit>17348.653646</expavg_credit>
                <id>123</id>
            </project>
            ... 他のプロジェクトの情報
        </host>
        ... 他の計算機の情報
    </hosts>

host_expavg_credit.xml

上記と同様で、プロジェクトを横断して合計した一日あたりの平均功績 が大きい順に並べられています。

Web RPC

get_user.php?cpid=xxxxx

    <user>
        <name>John Keck</name>
        <total_credit>42698.813543</total_credit>
        <expavg_credit>117348.653646</expavg_credit>
        <cpid>283472938743489759837498347</cpid>
        <project>
            <name>SETI@home</name>
            <url>http://setiathome.berkeley.edu</url>
            <total_credit>2698.813543</total_credit>
            <expavg_credit>17348.653646</expavg_credit>
        </project>
        ... 他のプロジェクトの情報
    </user>

get_host.php?cpid=xxxxx

    <host>
        <total_credit>0.000000</total_credit>
        <expavg_credit>0.000000</expavg_credit>
        <p_vendor>GenuineIntel</p_vendor>
        <p_model>Pentium</p_model>
        <os_name>Windows XP</os_name>
        <os_version>5.1</os_version>
        <create_time>1040170006</create_time>
        <timezone>28800</timezone>
        <ncpus>2</ncpus>
        <p_fpops>45724737.082762</p_fpops>
        <p_iops>43233895.373973</p_iops>
        <p_membw>4032258.064516</p_membw>
        <m_nbytes>670478336.000000</m_nbytes>
        <m_cache>1000000.000000</m_cache>
        <m_swap>1638260736.000000</m_swap>
        <d_total>9088008192.000000</d_total>
        <d_free>3788505088.000000</d_free>
        <n_bwup>24109.794088</n_bwup>
        <n_bwdown>57037.049858</n_bwdown>
        <host_cpid>xxxxx</host_cpid>
        <user_cpid>xxxxx</user_cpid>
        <project>
            <name>SETI@home</name>
            <url>http://setiathome.berkeley.edu</url>
            <total_credit>2698.813543</total_credit>
            <expavg_credit>17348.653646</expavg_credit>
        </project>
        ... 他のプロジェクトの情報
    </host>

BOINCの訳のメインページに戻る | (原文のメインページに戻る)
 

最終更新時刻 00:46:06, 2006年08月12日(JST)
Copyright © 2012 University of California. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
Copyright © 2012 Komori Hitoshi(je2bwm at jarl.com). Japanese translation from English web pages on BOINC. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.