geminispace.info

gemini search engine
git clone https://git.clttr.info/geminispace.info.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

statistics.gmi (1124B)


      1 {% include 'fragments/header.gmi' %}
      2 
      3 
      4 ## Statistics
      5 
      6 ### Overall
      7 
      8 These figures are representative of the aggregate size of Geminispace at the time the current index was last updated on {{ index_modification_time | datetimeformat }}.
      9 
     10 ```
     11 Page Count      : {{ "{:>7}".format(statistics.page_count) }}
     12 Domain Count    : {{ "{:>7}".format(statistics.domain_count) }}
     13 ```
     14 
     15 => /statistics/historical/overall historical data
     16 
     17 ### By Content Type
     18 
     19 These figures are representative of the number of pages seen per content type at the time the current index was last updated on {{ index_modification_time | datetimeformat }}.
     20 
     21 ```
     22 {% for entry in statistics.content_type_frequencies %}
     23 {{ "{:>7} - {}".format(entry["count"], entry["content_type"]) }}
     24 {% endfor %}
     25 ```
     26 
     27 ### By Charset
     28 
     29 These figures are representative of the number of pages seen per content type at the time the current index was last updated on {{ index_modification_time | datetimeformat }}.
     30 
     31 ```
     32 {% for entry in statistics.charset_frequencies %}
     33 {{ "{:>7} - {}".format(entry["count"], entry["charset"]) }}
     34 {% endfor %}
     35 ```
     36 
     37 {% include 'fragments/footer.gmi' %}