We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c99156f commit 5af6044Copy full SHA for 5af6044
5 files changed
app/charts/memory-chart.jsx
@@ -37,7 +37,7 @@ const MemoryChart = (props) => {
37
{
38
type: 'scatter',
39
fill: 'tozeroy',
40
- fillcolor: 'blue',
+ fillcolor: 'rgb(0, 237, 160)',
41
mode: 'none',
42
x: {autorange: true},
43
y: free,
@@ -47,7 +47,7 @@ const MemoryChart = (props) => {
47
48
49
50
- fillcolor: 'rgba(243, 245, 250, .9)',
+ fillcolor: 'rgba(0, 237, 160, .5)',
51
52
53
y: used,
@@ -57,7 +57,7 @@ const MemoryChart = (props) => {
57
58
59
60
- fillcolor: 'rgba(74, 78, 238, .3)',
+ fillcolor: 'rgba(74, 78, 238, .7)',
61
62
63
y: active,
app/charts/speed-chart.jsx
@@ -31,19 +31,19 @@ const SpeedChart = (props) => {
31
type: 'indicator',
32
value: yAxis[yAxis.length - 1],
33
title: {'text': "Speed Chart"},
34
- delta: {'reference': 3.5, 'decreasing': {'color': 'mistyrose'}},
+ delta: {'reference': 3.5, 'decreasing': {'color': '#FA1A58'}},
35
mode: "gauge+number+delta",
36
gauge: { axis: { range: [null, 8] },
'tickwidth': 1,
- 'tickcolor': 'mistyrose',
- 'bar': {'color': "#f3f5fa"},
+ 'tickcolor': '#FA1A58',
+ 'bar': {'color': '#00eda0'},
'bordercolor': "#a1be95",
'steps': [
- {'range': [0, 4], 'color': '#d09683'},
+ {'range': [0, 4], 'color': '#fef5fa'},
{'range': [4, 6], 'color': '#4a4eee'}
44
],
45
'threshold': {
46
- 'line': {'color': 'mistyrose', 'width': 3.5},
+ 'line': {'color': '#FA1A58', 'width': 3.5},
'thickness': 0.75,
'value': 7.5
}
app/stylesheets/graphs.css
@@ -6,5 +6,5 @@
6
7
svg {
8
border-radius: 2px;
9
- /* box-shadow: 5px 5px 5px rgba(216, 210, 247, .5); */
+ box-shadow: 2px 2px 2px rgba(216, 210, 247, .5);
10
app/stylesheets/monitoring.css
@@ -7,7 +7,7 @@
#microserviceHealthTitle{
- color: white;
+ color: black;
11
font-size: 38px;
12
margin-top: 0px;
13
font-family: 'Quicksand', sans-serif;
app/stylesheets/sidebar.css
@@ -45,7 +45,7 @@
.servicesBtn:hover {
- background-color: #00AFEA;
+ background-color: #494FEE;
font-weight: 400;
box-shadow: #333;
cursor: pointer;
@@ -107,7 +107,7 @@
107
108
.overviewSubmitBtn:hover {
109
/* border: .5px solid azure; */
110
111
color: azure;
112
113
@@ -121,7 +121,7 @@
121
/* font-weight: 900; */
122
123
/* border: 2px solid #98ba8e; */
124
125
126
127
.servicesList {
0 commit comments