flowchart TD
subgraph Get[Retrieve workflow data]
subgraph Time[Duration data]
Time_Pr[Private Repos]
Time_Pu[Public Repos]
end
Util[Utilisation data]
Energy[Energy / CO2 Usage]
Time --> Util --> Energy
end
Output[Output data]
Get --> Output
subgraph Dash[Data dashboard]
Dash_read[Read in data]
Dash_plot[Duration bubbleplot]
Dash_filter[Filter by branch / workflow]
Dash_energy[Visualise CPU / GPU / Energy]
Dash_read --> Dash_plot --> Dash_filter
Dash_plot --> Dash_energy
end
Website
Store[Storing data]
Badge[Repo badge]
Bot[Automated PR message]
Output --> Dash_read
Output --> Store
Energy -->Dash_energy
Dash --> Website
Store --> Badge
Store --> Bot
classDef done stroke:orange
class Get,Output,Time,Time_Pr,Dash,Dash_read,Dash_plot,Website done