mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
Wording changes
This commit is contained in:
parent
eb7f92282d
commit
506d112cce
@ -78,35 +78,35 @@
|
|||||||
return {
|
return {
|
||||||
data: [mv.avg, levelAlert],
|
data: [mv.avg, levelAlert],
|
||||||
color: ['hsl(0, 100%, 60%)', '#AAA'],
|
color: ['hsl(0, 100%, 60%)', '#AAA'],
|
||||||
messages: ['Metric strongly below recommended level!', 'Difference towards caution threshold'],
|
messages: ['Metric strongly below recommended levels!', 'Difference towards acceptable performace'],
|
||||||
impact: 2
|
impact: 2
|
||||||
} // 'hsl(0, 100%, 35%)'
|
} // 'hsl(0, 100%, 35%)'
|
||||||
} else if (levelCaution > 0) {
|
} else if (levelCaution > 0) {
|
||||||
return {
|
return {
|
||||||
data: [mv.avg, levelCaution],
|
data: [mv.avg, levelCaution],
|
||||||
color: ['hsl(56, 100%, 50%)', '#AAA'],
|
color: ['hsl(56, 100%, 50%)', '#AAA'],
|
||||||
messages: ['Metric below recommended level!', 'Difference towards normal threshold'],
|
messages: ['Metric below recommended levels', 'Difference towards normal performance'],
|
||||||
impact: 1
|
impact: 1
|
||||||
} // '#d5b60a'
|
} // '#d5b60a'
|
||||||
} else if (levelNormal > 0) {
|
} else if (levelNormal > 0) {
|
||||||
return {
|
return {
|
||||||
data: [mv.avg, levelNormal],
|
data: [mv.avg, levelNormal],
|
||||||
color: ['hsl(100, 100%, 60%)', '#AAA'],
|
color: ['hsl(100, 100%, 60%)', '#AAA'],
|
||||||
messages: ['Metric within recommended level!', 'Difference towards peak threshold'],
|
messages: ['Metric within recommended levels', 'Difference towards optimal performance'],
|
||||||
impact: 0
|
impact: 0
|
||||||
} // 'hsl(100, 100%, 35%)'
|
} // 'hsl(100, 100%, 35%)'
|
||||||
} else if (levelPeak > 0) {
|
} else if (levelPeak > 0) {
|
||||||
return {
|
return {
|
||||||
data: [mv.avg, levelPeak],
|
data: [mv.avg, levelPeak],
|
||||||
color: ['hsl(180, 100%, 60%)', '#AAA'],
|
color: ['hsl(180, 100%, 60%)', '#AAA'],
|
||||||
messages: ['Metric above recommended level!', 'Difference towards maximum'],
|
messages: ['Metric performs better than recommended levels', 'Difference towards maximum capacity'], // "Perfomrs optimal"?
|
||||||
impact: 0
|
impact: 0
|
||||||
} // 'hsl(180, 100%, 35%)'
|
} // 'hsl(180, 100%, 35%)'
|
||||||
} else { // If avg greater than configured peak: render negative diff as zero
|
} else { // If avg greater than configured peak: render negative diff as zero
|
||||||
return {
|
return {
|
||||||
data: [mv.avg, 0],
|
data: [mv.avg, 0],
|
||||||
color: ['hsl(180, 100%, 60%)', '#AAA'],
|
color: ['hsl(180, 100%, 60%)', '#AAA'],
|
||||||
messages: ['Metric above recommended level!', 'Maximum reached!'],
|
messages: ['Metric performs at maximum capacity', 'Maximum reached'],
|
||||||
impact: 0
|
impact: 0
|
||||||
} // 'hsl(180, 100%, 35%)'
|
} // 'hsl(180, 100%, 35%)'
|
||||||
}
|
}
|
||||||
@ -115,35 +115,35 @@
|
|||||||
return {
|
return {
|
||||||
data: [mv.avg, 0],
|
data: [mv.avg, 0],
|
||||||
color: ['#7F00FF', '#AAA'],
|
color: ['#7F00FF', '#AAA'],
|
||||||
messages: ['Memory usage at maximum!', 'Maximum reached!'],
|
messages: ['Memory usage at maximum capacity!', 'Maximum reached'],
|
||||||
impact: 4
|
impact: 4
|
||||||
} // '#5D3FD3'
|
} // '#5D3FD3'
|
||||||
} else if (levelPeak > 0 && (levelAlert <= 0 && levelCaution <= 0 && levelNormal <= 0)) {
|
} else if (levelPeak > 0 && (levelAlert <= 0 && levelCaution <= 0 && levelNormal <= 0)) {
|
||||||
return {
|
return {
|
||||||
data: [mv.avg, levelPeak],
|
data: [mv.avg, levelPeak],
|
||||||
color: ['#7F00FF', '#AAA'],
|
color: ['#7F00FF', '#AAA'],
|
||||||
messages: ['Memory usage extremely above recommended level!', 'Difference towards maximum'],
|
messages: ['Memory usage extremely above recommended levels!', 'Difference towards maximum memory capacity'],
|
||||||
impact: 2
|
impact: 2
|
||||||
} // '#5D3FD3'
|
} // '#5D3FD3'
|
||||||
} else if (levelAlert > 0 && (levelCaution <= 0 && levelNormal <= 0)) {
|
} else if (levelAlert > 0 && (levelCaution <= 0 && levelNormal <= 0)) {
|
||||||
return {
|
return {
|
||||||
data: [mv.avg, levelAlert],
|
data: [mv.avg, levelAlert],
|
||||||
color: ['hsl(0, 100%, 60%)', '#AAA'],
|
color: ['hsl(0, 100%, 60%)', '#AAA'],
|
||||||
messages: ['Memory usage strongly above recommended level!', 'Difference towards peak threshold'],
|
messages: ['Memory usage strongly above recommended levels!', 'Difference towards highly alerting memory usage'],
|
||||||
impact: 2
|
impact: 2
|
||||||
} // 'hsl(0, 100%, 35%)'
|
} // 'hsl(0, 100%, 35%)'
|
||||||
} else if (levelCaution > 0 && levelNormal <= 0) {
|
} else if (levelCaution > 0 && levelNormal <= 0) {
|
||||||
return {
|
return {
|
||||||
data: [mv.avg, levelCaution],
|
data: [mv.avg, levelCaution],
|
||||||
color: ['hsl(56, 100%, 50%)', '#AAA'],
|
color: ['hsl(56, 100%, 50%)', '#AAA'],
|
||||||
messages: ['Memory usage above recommended level!', 'Difference towards alert threshold'],
|
messages: ['Memory usage above recommended levels', 'Difference towards alerting memory usage'],
|
||||||
impact: 1
|
impact: 1
|
||||||
} // '#d5b60a'
|
} // '#d5b60a'
|
||||||
} else {
|
} else {
|
||||||
return {
|
return {
|
||||||
data: [mv.avg, levelNormal],
|
data: [mv.avg, levelNormal],
|
||||||
color: ['hsl(100, 100%, 60%)', '#AAA'],
|
color: ['hsl(100, 100%, 60%)', '#AAA'],
|
||||||
messages: ['Memory usage within recommended level!', 'Difference towards caution threshold'],
|
messages: ['Memory usage within recommended levels', 'Difference towards increased memory usage'],
|
||||||
impact: 0
|
impact: 0
|
||||||
} // 'hsl(100, 100%, 35%)'
|
} // 'hsl(100, 100%, 35%)'
|
||||||
}
|
}
|
||||||
@ -166,7 +166,7 @@
|
|||||||
} else if (footprintResultSum > 3 && footprintResultSum <= 5) {
|
} else if (footprintResultSum > 3 && footprintResultSum <= 5) {
|
||||||
footprintResult = 'acceptable'
|
footprintResult = 'acceptable'
|
||||||
} else {
|
} else {
|
||||||
footprintResult = 'bad'
|
footprintResult = 'badly'
|
||||||
}
|
}
|
||||||
|
|
||||||
$: data = {
|
$: data = {
|
||||||
|
Loading…
Reference in New Issue
Block a user