summaryrefslogtreecommitdiff
path: root/src/views/_sila/Processors
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/_sila/Processors')
-rw-r--r--src/views/_sila/Processors/Dynamic/ProcessorsDynamicPage.vue11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/views/_sila/Processors/Dynamic/ProcessorsDynamicPage.vue b/src/views/_sila/Processors/Dynamic/ProcessorsDynamicPage.vue
index 228555a1..354d0329 100644
--- a/src/views/_sila/Processors/Dynamic/ProcessorsDynamicPage.vue
+++ b/src/views/_sila/Processors/Dynamic/ProcessorsDynamicPage.vue
@@ -33,7 +33,13 @@
<b-container fluid="xl">
<page-title :description="$t('appPageTitle.dynamicInformation')" />
- <chart :data="filteredSensors"></chart>
+ <chart
+ type="processors"
+ :data="filteredSensors"
+ :warning="temperatureWarning"
+ :non-normal="temperatureNonNormal"
+ :critical-start="temperatureCriticalStart"
+ ></chart>
</b-container>
</template>
@@ -53,6 +59,9 @@ export default {
data() {
return {
activeFilters: [],
+ temperatureWarning: 72,
+ temperatureNonNormal: 44,
+ temperatureCriticalStart: 55,
};
},