Skip to content

Commit eb3feb7

Browse files
author
Nikita Filonov
committed
integrations
1 parent f93f347 commit eb3feb7

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

src/Components/Alerts/Integrations/CreateIntegrationFormAlert.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ export const CreateIntegrationFormAlert = () => {
1212
<b>host</b> — The host of the integration system. Use it in the template as: <code>{`{host}`}</code>;
1313
</li>
1414
<li>
15-
<b>time_to</b> — The end time of the load testing result. Use it in the template as:{' '}
16-
<code>{`{time_to}`}</code>;
15+
<b>to_time</b> — The end time of the load testing result. Use it in the template as:{' '}
16+
<code>{`{to_time}`}</code>;
1717
</li>
1818
<li>
19-
<b>time_from</b> — The start time of the load testing result. Use it in the template as:{' '}
20-
<code>{`{time_from}`}</code>.
19+
<b>from_time</b> — The start time of the load testing result. Use it in the template as:{' '}
20+
<code>{`{from_time}`}</code>.
2121
</li>
2222
</Box>
2323
<Box sx={{ mt: 2 }}>

src/Services/Tables/Utils.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,49 +61,49 @@ export const getDefaultCoreTableSettings = (): CoreTableSettings => ({
6161
{ index: 0, value: MetricName.Method, hidden: false, orderKey: MetricKey.Method },
6262
{ index: 1, value: MetricName.Protocol, hidden: false, orderKey: MetricKey.Protocol },
6363
{
64-
index: 1,
64+
index: 2,
6565
value: MetricName.ResponseTimePercentile50,
6666
hidden: false,
6767
orderKey: MetricKey.ResponseTimePercentile50
6868
},
6969
{
70-
index: 2,
70+
index: 3,
7171
value: MetricName.ResponseTimePercentile60,
7272
hidden: false,
7373
orderKey: MetricKey.ResponseTimePercentile60
7474
},
7575
{
76-
index: 3,
76+
index: 4,
7777
value: MetricName.ResponseTimePercentile70,
7878
hidden: false,
7979
orderKey: MetricKey.ResponseTimePercentile70
8080
},
8181
{
82-
index: 4,
82+
index: 5,
8383
value: MetricName.ResponseTimePercentile80,
8484
hidden: false,
8585
orderKey: MetricKey.ResponseTimePercentile80
8686
},
8787
{
88-
index: 5,
88+
index: 6,
8989
value: MetricName.ResponseTimePercentile90,
9090
hidden: false,
9191
orderKey: MetricKey.ResponseTimePercentile90
9292
},
9393
{
94-
index: 6,
94+
index: 7,
9595
value: MetricName.ResponseTimePercentile95,
9696
hidden: false,
9797
orderKey: MetricKey.ResponseTimePercentile95
9898
},
9999
{
100-
index: 7,
100+
index: 8,
101101
value: MetricName.ResponseTimePercentile99,
102102
hidden: false,
103103
orderKey: MetricKey.ResponseTimePercentile99
104104
},
105105
{
106-
index: 8,
106+
index: 9,
107107
value: MetricName.ResponseTimePercentile100,
108108
hidden: false,
109109
orderKey: MetricKey.ResponseTimePercentile100

0 commit comments

Comments
 (0)