mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Synthetics] Increase Project monitor payload limit to 50MiB (#174470)
## Summary Follow up to https://github.com/elastic/synthetics/pull/884 Increase Project monitor payload route limit to 50MiB !!
This commit is contained in:
parent
72a5f87b24
commit
8f9e11d001
2 changed files with 8 additions and 2 deletions
|
@ -68,7 +68,13 @@ journey(`TestRunDetailsPage`, async ({ page, params }) => {
|
|||
|
||||
step('Go to test run page', async () => {
|
||||
await page.click(byTestId('superDatePickerToggleQuickMenuButton'));
|
||||
await page.click('text=Last 1 year');
|
||||
await page.getByTestId('superDatePickerQuickMenu').getByLabel('Time value').fill('10');
|
||||
await page
|
||||
.getByTestId('superDatePickerQuickMenu')
|
||||
.getByLabel('Time unit')
|
||||
.selectOption('Years');
|
||||
await page.getByTestId('superDatePickerQuickMenu').getByText('Apply').click();
|
||||
await page.mouse.wheel(0, 1000);
|
||||
await page.click(byTestId('row-ab240846-8d22-11ed-8fac-52bb19a2321e'));
|
||||
|
||||
await page.waitForSelector('text=Test run details');
|
||||
|
|
|
@ -13,7 +13,7 @@ import { ProjectMonitor } from '../../../common/runtime_types';
|
|||
import { SYNTHETICS_API_URLS } from '../../../common/constants';
|
||||
import { ProjectMonitorFormatter } from '../../synthetics_service/project_monitor/project_monitor_formatter';
|
||||
|
||||
const MAX_PAYLOAD_SIZE = 1048576 * 20; // 20MiB
|
||||
const MAX_PAYLOAD_SIZE = 1048576 * 50; // 20MiB
|
||||
|
||||
export const addSyntheticsProjectMonitorRoute: SyntheticsRestApiRouteFactory = () => ({
|
||||
method: 'PUT',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue