From 7b150643113b75a5c7af89c9cc0e87da0f6ee09f Mon Sep 17 00:00:00 2001 From: David Gasquez Date: Thu, 28 Nov 2024 08:39:17 +0000 Subject: [PATCH 1/2] chore: :art: add SLO line --- src/provider/[provider].md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/provider/[provider].md b/src/provider/[provider].md index 1fe8d5a..068c611 100644 --- a/src/provider/[provider].md +++ b/src/provider/[provider].md @@ -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}) ] })) ``` From 0e7ec609a1475fabd3822faae5861701b2e7eece Mon Sep 17 00:00:00 2001 From: David Gasquez Date: Thu, 28 Nov 2024 08:41:54 +0000 Subject: [PATCH 2/2] feat: :rocket: add Active Sectors chart --- src/provider/[provider].md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/src/provider/[provider].md b/src/provider/[provider].md index 068c611..c8d1205 100644 --- a/src/provider/[provider].md +++ b/src/provider/[provider].md @@ -87,6 +87,8 @@ _How an SP performs again the [(TBD) "warm" service class](https://github.com/fi #### Durability +
+
```js @@ -117,6 +119,31 @@ resize((width) => Plot.plot({
+
+ +```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 + }) + ] +})) +``` + +
+ +
+ ## Storage Provider Activity ### Deals