Skip to content

Commit 375aa93

Browse files
committed
use log scaling in metric summary section
1 parent eb6552d commit 375aa93

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/ui/lib/components/MetricsSummary/MetricsSummary.component.tsx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ import {
3535
StyledFormControl,
3636
} from './MetricsSummary.styles';
3737
import { useSummary } from './useSummary';
38-
import { ScaleType } from '../Charts/DashedLine/DashedLine.interfaces';
3938

4039
const percentileOptions = ['p50', 'p90', 'p95', 'p99'];
4140

@@ -208,7 +207,6 @@ export const Component = () => {
208207
data={[{ id: 'ttft', data: lineDataByRps.ttft || [] }]}
209208
threshold={ttftSLO}
210209
lineColor={LineColor.Primary}
211-
yScaleType={ScaleType.linear}
212210
/>
213211
</GraphContainer>
214212
</MiddleColumn>
@@ -227,7 +225,6 @@ export const Component = () => {
227225
data={[{ id: 'tpot', data: lineDataByRps.tpot || [] }]}
228226
threshold={tpotSLO}
229227
lineColor={LineColor.Secondary}
230-
yScaleType={ScaleType.linear}
231228
/>
232229
</GraphContainer>
233230
</MiddleColumn>
@@ -248,7 +245,6 @@ export const Component = () => {
248245
]}
249246
threshold={timePerRequestSLO}
250247
lineColor={LineColor.Tertiary}
251-
yScaleType={ScaleType.linear}
252248
/>
253249
</GraphContainer>
254250
</MiddleColumn>
@@ -269,7 +265,6 @@ export const Component = () => {
269265
data={[{ id: 'throughput', data: lineDataByRps.throughput || [] }]}
270266
threshold={throughputSLO}
271267
lineColor={LineColor.Quarternary}
272-
yScaleType={ScaleType.linear}
273268
/>
274269
</GraphContainer>
275270
</MiddleColumn>

0 commit comments

Comments
 (0)