Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
Publish November 2023 report
Browse files Browse the repository at this point in the history
  • Loading branch information
31z4 committed Dec 1, 2023
1 parent 345b711 commit 7d042d6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The goal of this project is to increase the transparency of 🪐 [Filecoin Saturn](https://saturn.tech) network – the fastest growing, community-run distributed content delivery network (CDN) for Web3.

We use historical data about the network gathered by 🌖 [Saturn Moonlet](https://github.com/cronian-tech/saturn-moonlet) to prepare and publish analytical reports on Saturn Observatory [website](https://observatory.cronian.tech) every month. Raw data that is used to generate the reports [is available](https://gateway.ipfs.io/ipfs/bafybeifmkotlmwf4c55kynudl5uxljmuyyx54gvpjzgxhr2ld564matzdu) on IPFS and Filecoin.
We use historical data about the network gathered by 🌖 [Saturn Moonlet](https://github.com/cronian-tech/saturn-moonlet) to prepare and publish analytical reports on Saturn Observatory [website](https://observatory.cronian.tech) every month. Raw data that is used to generate the reports [is available](https://gateway.ipfs.io/ipfs/bafybeictbkysxfxof7wwuvzbgnp4enj72dmetxichpuuc3zub6fmazscma) on IPFS and Filecoin.

Saturn Observatory compliments official tools like [Saturn Node Dashboard](https://dashboard.saturn.tech) and [Saturn Explorer](https://explorer.saturn.tech), aiming to provide better insights into the network state and performance. To highlight a few:

Expand Down
3 changes: 2 additions & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,14 @@ <h1>🔭 Saturn Observatory</h1>
<li><a href="?year=2023&month=08">August 2023</a></li>
<li><a href="?year=2023&month=09">September 2023</a></li>
<li><a href="?year=2023&month=10">October 2023</a></li>
<li><a href="?year=2023&month=11">November 2023</a></li>
</ul>

<b>⚙️ Data & Tooling</b>
<p>
Raw CSV data that we use to generate the plots are available on IPFS and Filecoin under CID
<a
href="https://gateway.ipfs.io/ipfs/bafybeifmkotlmwf4c55kynudl5uxljmuyyx54gvpjzgxhr2ld564matzdu">bafybeifmkotlmwf4c55kynudl5uxljmuyyx54gvpjzgxhr2ld564matzdu</a>.
href="https://gateway.ipfs.io/ipfs/bafybeictbkysxfxof7wwuvzbgnp4enj72dmetxichpuuc3zub6fmazscma">bafybeictbkysxfxof7wwuvzbgnp4enj72dmetxichpuuc3zub6fmazscma</a>.
</p>

<p>To learn more about how data is gathered and analyzed, check the project's <a
Expand Down
4 changes: 2 additions & 2 deletions web/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ if (year === null) {
}
let month = params.get('month')
if (month === null) {
month = '10'
month = '11'
}

function dataUrl (file) {
return `https://gateway.ipfs.io/ipfs/bafybeiak2c6se7bmttyjwhtsaswmu34a72rrz4gublnc3grnjnqs567wja/year=${year}/month=${month}/${file}`
return `https://gateway.ipfs.io/ipfs/bafybeih55tw3hojcxp4u3nwz6su4snco6v5v2e5i4sqvjbma4dfyw2unmy/year=${year}/month=${month}/${file}`
}

const PLOTLY_CONF = {
Expand Down

0 comments on commit 7d042d6

Please sign in to comment.