File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 66import { useCallback } from 'react' ;
77import {
88 HEIGHT_DEFAULT_CHART ,
9+ HEIGHT_SYMMETRICAL_CHART ,
910 UNIT_RANGE_BS ,
1011 UNIT_RANGE_SECONDS ,
1112 YAXIS_TITLE_READ_WRITE ,
@@ -68,7 +69,7 @@ export const VolumeThroughputChart = ({
6869 return (
6970 < LineTimeSerieChart
7071 series = { series }
71- height = { 160 }
72+ height = { HEIGHT_SYMMETRICAL_CHART }
7273 interval = { interval }
7374 duration = { duration }
7475 title = "Disk Throughput"
@@ -120,7 +121,7 @@ export const VolumeLatencyChart = ({
120121 return (
121122 < LineTimeSerieChart
122123 series = { series }
123- height = { 160 }
124+ height = { HEIGHT_SYMMETRICAL_CHART }
124125 interval = { interval }
125126 duration = { duration }
126127 title = "Disk Latency"
@@ -172,7 +173,7 @@ export const VolumeIOPSChart = ({
172173 return (
173174 < LineTimeSerieChart
174175 series = { series }
175- height = { 160 }
176+ height = { HEIGHT_SYMMETRICAL_CHART }
176177 interval = { interval }
177178 duration = { duration }
178179 title = "IOPS"
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ export const GRAFANA_DASHBOARDS = {
101101 volumes : '919b92a8e8041bd567af9edab12c840c' ,
102102} ;
103103// Height of the charts
104- export const HEIGHT_DEFAULT_CHART = 120 ;
104+ export const HEIGHT_DEFAULT_CHART = 160 ;
105105export const HEIGHT_SYMMETRICAL_CHART = 160 ;
106106export const NODES_LIMIT_QUANTILE = 8 ;
107107export const NODE_SYNC_ID = 'nodeMetrics' ;
You can’t perform that action at this time.
0 commit comments