Skip to content

Commit

Permalink
Update warm service class conformance graph labeling (#7)
Browse files Browse the repository at this point in the history
- More clearly calling out the difference between the "warm service class conformance graphs"
- Updating the discussion to meeting SLOs rather than meeting SLIs.
  • Loading branch information
BigLep authored Nov 28, 2024
1 parent ad4d651 commit 3cb54db
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ This dashboard is a scrappy work-in-progress to help spur discussion at [FDS-5 B
const daily_metrics = FileAttachment("data/daily_metrics.csv").csv({typed: true});
const daily_providers_metrics = FileAttachment("data/daily_providers_metrics.csv").csv({typed: true});

// TODO: factor out these helper functions so they can be used on the "provider detail pages" as well.

// Mutates the provided plotConfig by adding a caption if one doesn't exist
function addPlotCaption(plotConfig, href) {
if (!plotConfig.caption) {
Expand Down Expand Up @@ -121,13 +123,12 @@ Service Classes and their corresponding Service Level Objectives are defined in

```js
resize((width) => Plot.plot(addPlotCaption({
title: "\"Warm\" Service Class Conformance",
subtitle: html`Providers conforming to warm service class`,
title: "\"Warm\" Service Class Conformance: Retrievability",
subtitle: html`Providers meeting the "Warm" service class retrievability SLO`,
x: { label: "Date" },
y: {
grid: true,
label: "Meet Retrieval SLI",
domain: [0, 100]
label: "# of SPs",
},
width,
marks: [
Expand All @@ -146,12 +147,12 @@ Service Classes and their corresponding Service Level Objectives are defined in

```js
resize((width) => Plot.plot(addPlotCaption({
title: "\"Warm\" Service Class Conformance",
subtitle: html`Providers conforming to warm service class`,
title: "\"Warm\" Service Class Conformance: Sector Health",
subtitle: html`Providers meeting the "Warm" service class sector health SLO`,
x: { label: "Date" },
y: {
grid: true,
label: "Meet Sector Health SLI",
label: "# of SPs",
},
width,
marks: [
Expand Down

0 comments on commit 3cb54db

Please sign in to comment.