Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions frontend/js/helpers/config.js.example
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@ METRIC_MAPPINGS = {
'explanation': 'Machine CO2 calculated by formula via XGBoost estimation',
},
'network_energy_formula_global': {
'clean_name': 'Network Energy',
'clean_name': 'Network Transmission',
'source': 'Formula',
'explanation': 'Network Energy calculated by formula',
'explanation': 'Estimated external energy cost for network infrastructure.',
},
'network_co2_formula_global': {
'clean_name': 'Network CO2',
'clean_name': 'Network Transmission CO2',
'source': 'Formula',
'explanation': 'Network CO2 calculated by formula',
'explanation': 'Estimated external CO2 cost for network infrastructure.',
},
'lm_sensors_temperature_component': {
'clean_name': 'CPU Temperature',
Expand Down
8 changes: 4 additions & 4 deletions frontend/js/helpers/metric-boxes.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ class PhaseMetrics extends HTMLElement {
</div>
<div class="ui card network-energy">
<div class="ui content">
<div class="ui top blue attached label overflow-ellipsis">Network Energy <span class="si-unit"></span></div>
<div class="ui top blue attached label overflow-ellipsis">Network Transmission Energy<span class="si-unit"></span></div>
<div class="description">
<div class="ui fluid mini statistic">
<div class="value">
<i class="battery three quarters icon"></i> <span>N/A</span>
</div>
</div>
<div class="ui bottom right attached label icon" data-position="bottom right" data-inverted="" data-tooltip="Transfer cost of data through routers, data-centers and transmission networks.">
<div class="ui bottom right attached label icon" data-position="bottom right" data-inverted="" data-tooltip="Estimated external energy cost for network infrastructure. See details under formula.">
<u><a href="https://www.green-coding.berlin/co2-formulas/">via Formula</a></u>
<i class="question circle icon"></i>
</div>
Expand Down Expand Up @@ -103,14 +103,14 @@ class PhaseMetrics extends HTMLElement {
</div>
<div class="ui card network-co2">
<div class="ui content">
<div class="ui top black attached label overflow-ellipsis">Network CO2 <span class="si-unit"></span></div>
<div class="ui top black attached label overflow-ellipsis">Network Transmission CO2 <span class="si-unit"></span></div>
<div class="description">
<div class="ui fluid mini statistic">
<div class="value">
<i class="burn icon"></i> <span>N/A</span>
</div>
</div>
<div class="ui bottom right attached label icon" data-position="bottom right" data-inverted="" data-tooltip="Transfer cost of data through routers, data-centers and transmission networks.">
<div class="ui bottom right attached label icon" data-position="bottom right" data-inverted="" data-tooltip="Estimated external CO2 cost for network infrastructure. See details under formula.">
<u><a href="https://www.green-coding.berlin/co2-formulas/">via Formula</a></u>
<i class="question circle icon"></i>
</div>
Expand Down