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

Heartbeat: fix browser metrics and trace mappings #30258

Merged
merged 3 commits into from
Feb 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
115 changes: 61 additions & 54 deletions heartbeat/_meta/fields.common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,69 +211,76 @@
- name: hash
type: keyword
description: Hash that uniquely identifies this image by content. Corresponds to block document id.
- name: browser

- key: browser
title: "Synthetics browser metrics"
description:
fields:
- name: browser
type: group
description: Browser metrics and traces
fields:
- name: experience
type: group
description: >
Absolute values of all user experience metrics in the browser
relative to the navigation start event in microseconds
fields:
- name: experience
- name: fcp
type: group
description: >
Absolute values of all user experience metrics in the browser
relative to the navigation start event in microseconds
description: duration of First contentful paint metric
fields:
- name: fcp
type: group
description: duration of First contentful paint metric
fields:
- name: us
type: integer
- name: lcp
type: group
description: duration of Largest contentful paint metric
fields:
- name: us
type: integer
- name: dcl
type: group
description: duration of Document content loaded end event
fields:
- name: us
type: integer
- name: load
type: group
description: duration of Load end event
fields:
- name: duration
type: integer
- name: cls
- name: us
type: integer
description: culumative layout shift score across all frames
- name: relative_trace
- name: lcp
type: group
description: >
trace event with timing information that are realtive to
journey timings in microseconds
description: duration of Largest contentful paint metric
fields:
- name: us
type: integer
- name: dcl
type: group
description: duration of Document content loaded end event
fields:
- name: us
type: integer
- name: load
type: group
description: duration of Load end event
fields:
- name: name
type: keyword
description: name of the trace event
- name: type
type: text
description: could be one of mark or measure event types
- name: start
type: group
description: monotonically increasing trace start time in microseconds
fields:
- name: us
type: long
- name: duration
type: group
description: duration of the trace event in microseconds.
fields:
- name: us
type: integer
- name: score
type: integer
description: weighted score of the layout shift event
- name: cls
type: integer
description: culumative layout shift score across all frames

- name: relative_trace
type: group
description: >
trace event with timing information that are realtive to
journey timings in microseconds
fields:
- name: name
type: keyword
description: name of the trace event
- name: type
type: text
description: could be one of mark or measure event types
- name: start
type: group
description: monotonically increasing trace start time in microseconds
fields:
- name: us
type: long
- name: duration
type: group
description: duration of the trace event in microseconds.
fields:
- name: us
type: integer
- name: score
type: integer
description: weighted score of the layout shift event

- key: http
title: "HTTP monitor"
Expand Down
Loading