Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: 🎨 small charts feedback #11

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion src/provider/[provider].md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ _How an SP performs again the [(TBD) "warm" service class](https://github.com/fi
y: d => d.successful_retrieval_requests / d.total_retrieval_requests * 100 || 0,
stroke: "orange",
tip: true
})
}),
Plot.ruleY([90], {stroke: "green", strokeWidth: 3})
]
}))
```
Expand Down Expand Up @@ -86,6 +87,8 @@ _How an SP performs again the [(TBD) "warm" service class](https://github.com/fi

#### Durability

<div class="grid grid-cols-2">

<div class="card">

```js
Expand Down Expand Up @@ -116,6 +119,31 @@ resize((width) => Plot.plot({

</div>

<div class="card">

```js
resize((width) => Plot.plot({
title: "Active Sectors",
subtitle: "Number of active sectors per day.",
x: {label: "Date"},
y: {grid: true, label: "Sectors"},
width,
marks: [
Plot.ruleY([0]),
Plot.lineY(provider_metrics, {
x: "date",
y: "active_sectors",
stroke: "steelblue",
tip: true
})
]
}))
```

</div>

</div>

## Storage Provider Activity

### Deals
Expand Down