Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Uptime] Added step duraion in step list #116266

Merged
merged 22 commits into from
Dec 6, 2021
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
ebf1ffb
Added step duraion in step list
shahzad31 Oct 26, 2021
72ba7e6
Merge branch 'master' of github.com:elastic/kibana into step-list-dur…
shahzad31 Oct 28, 2021
b20c263
fix unit
shahzad31 Oct 28, 2021
27a1c85
Merge branch 'main' of github.com:elastic/kibana into step-list-duration
shahzad31 Nov 21, 2021
6399b23
update test
shahzad31 Nov 22, 2021
508dcc5
Merge branch 'main' of github.com:elastic/kibana into step-list-duration
shahzad31 Nov 30, 2021
e95869c
fix for skipped
shahzad31 Nov 30, 2021
064f232
Merge branch 'main' of github.com:elastic/kibana into step-list-duration
shahzad31 Nov 30, 2021
9d80317
fix typings
shahzad31 Nov 30, 2021
36bb246
update e2e
shahzad31 Nov 30, 2021
90813c5
Merge branch 'main' of github.com:elastic/kibana into step-list-duration
shahzad31 Dec 1, 2021
b3eab1b
add tests
shahzad31 Dec 1, 2021
2c43a24
fixed formatting and show only one at a time
shahzad31 Dec 1, 2021
073ee59
fix funcs
shahzad31 Dec 1, 2021
28d8914
Merge branch 'main' of github.com:elastic/kibana into step-list-duration
shahzad31 Dec 2, 2021
545975d
Merge branch 'main' of github.com:elastic/kibana into step-list-duration
shahzad31 Dec 3, 2021
29bf790
escapre qoutes
shahzad31 Dec 3, 2021
485cfa0
retry test
shahzad31 Dec 3, 2021
b107a0a
Merge branch 'main' of github.com:elastic/kibana into step-list-duration
shahzad31 Dec 3, 2021
980fa1e
update test
shahzad31 Dec 3, 2021
223de54
fix
shahzad31 Dec 3, 2021
b6f4c31
Merge branch 'main' of github.com:elastic/kibana into step-list-duration
shahzad31 Dec 6, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export interface ExploratoryEmbeddableProps {
showCalculationMethod?: boolean;
axisTitlesVisibility?: XYState['axisTitlesVisibilitySettings'];
legendIsVisible?: boolean;
dataTypesIndexPatterns?: Record<AppDataType, string>;
dataTypesIndexPatterns?: Partial<Record<AppDataType, string>>;
reportConfigMap?: ReportConfigMap;
}

Expand Down
4 changes: 4 additions & 0 deletions x-pack/plugins/uptime/common/runtime_types/ping/synthetics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,12 @@ export const JourneyStepType = t.intersection([
text: t.string,
}),
step: t.type({
status: t.string,
index: t.number,
name: t.string,
duration: t.type({
us: t.number,
}),
}),
isFullScreenshot: t.boolean,
isScreenshotRef: t.boolean,
Expand Down
Binary file not shown.
Loading