Skip to content
Open
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
8 changes: 7 additions & 1 deletion generated/attributes/all.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

This page lists all available attributes across all categories.

Total attributes: 422
Total attributes: 428

## Stable Attributes

Expand All @@ -31,6 +31,9 @@ Total attributes: 422
| [`browser.script.invoker_type`](./browser.md#browserscriptinvoker_type) | Browser script entry point type. |
| [`browser.script.source_char_position`](./browser.md#browserscriptsource_char_position) | A number representing the script character position of the script. |
| [`browser.version`](./browser.md#browserversion) | The version of the browser. |
| [`browser.web_vital.cls.value`](./browser.md#browserweb_vitalclsvalue) | The value of the recorded Cumulative Layout Shift (CLS) web vital |
| [`browser.web_vital.inp.value`](./browser.md#browserweb_vitalinpvalue) | The value of the recorded Interaction to Next Paint (INP) web vital |
| [`browser.web_vital.lcp.value`](./browser.md#browserweb_vitallcpvalue) | The value of the recorded Largest Contentful Paint (LCP) web vital |
| [`cache.hit`](./cache.md#cachehit) | If the cache was hit during this span. |
| [`cache.item_size`](./cache.md#cacheitem_size) | The size of the requested item in the cache. In bytes. |
| [`cache.key`](./cache.md#cachekey) | The key of the cache accessed. |
Expand Down Expand Up @@ -379,6 +382,7 @@ Total attributes: 422
| [`ai.top_k`](./ai.md#aitop_k) | [`gen_ai.request.top_k`](./gen_ai.md#gen_airequesttop_k) |
| [`ai.top_p`](./ai.md#aitop_p) | [`gen_ai.request.top_p`](./gen_ai.md#gen_airequesttop_p) |
| [`ai.total_tokens.used`](./ai.md#aitotal_tokensused) | [`gen_ai.usage.total_tokens`](./gen_ai.md#gen_aiusagetotal_tokens) |
| [`cls`](./general.md#cls) | [`browser.web_vital.cls.value`](./browser.md#browserweb_vitalclsvalue) |
| [`code.filepath`](./code.md#codefilepath) | [`code.file.path`](./code.md#codefilepath) |
| [`code.function`](./code.md#codefunction) | [`code.function.name`](./code.md#codefunctionname) |
| [`code.lineno`](./code.md#codelineno) | [`code.line.number`](./code.md#codelinenumber) |
Expand Down Expand Up @@ -410,6 +414,8 @@ Total attributes: 422
| [`http.target`](./http.md#httptarget) | [`url.path`](./url.md#urlpath) |
| [`http.url`](./http.md#httpurl) | [`url.full`](./url.md#urlfull) |
| [`http.user_agent`](./http.md#httpuser_agent) | [`user_agent.original`](./user_agent.md#user_agentoriginal) |
| [`inp`](./general.md#inp) | [`browser.web_vital.inp.value`](./browser.md#browserweb_vitalinpvalue) |
| [`lcp`](./general.md#lcp) | [`browser.web_vital.lcp.value`](./browser.md#browserweb_vitallcpvalue) |
| [`method`](./general.md#method) | [`http.request.method`](./http.md#httprequestmethod) |
| [`net.host.ip`](./net.md#nethostip) | [`network.local.address`](./network.md#networklocaladdress) |
| [`net.host.name`](./net.md#nethostname) | [`server.address`](./server.md#serveraddress) |
Expand Down
39 changes: 39 additions & 0 deletions generated/attributes/browser.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
- [browser.script.invoker_type](#browserscriptinvoker_type)
- [browser.script.source_char_position](#browserscriptsource_char_position)
- [browser.version](#browserversion)
- [browser.web_vital.cls.value](#browserweb_vitalclsvalue)
- [browser.web_vital.inp.value](#browserweb_vitalinpvalue)
- [browser.web_vital.lcp.value](#browserweb_vitallcpvalue)

## Stable Attributes

Expand Down Expand Up @@ -80,3 +83,39 @@ The version of the browser.
| Example | `120.0.6099.130` |
| Aliases | `sentry.browser.version` |

### browser.web_vital.cls.value

The value of the recorded Cumulative Layout Shift (CLS) web vital

| Property | Value |
| --- | --- |
| Type | `double` |
| Has PII | maybe |
| Exists in OpenTelemetry | No |
| Example | `0.2361` |
| Aliases | `cls` |

### browser.web_vital.inp.value

The value of the recorded Interaction to Next Paint (INP) web vital

| Property | Value |
| --- | --- |
| Type | `double` |
| Has PII | maybe |
| Exists in OpenTelemetry | No |
| Example | `200` |
| Aliases | `inp` |

### browser.web_vital.lcp.value

The value of the recorded Largest Contentful Paint (LCP) web vital

| Property | Value |
| --- | --- |
| Type | `double` |
| Has PII | maybe |
| Exists in OpenTelemetry | No |
| Example | `2500` |
| Aliases | `lcp` |

45 changes: 45 additions & 0 deletions generated/attributes/general.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@
- [previous_route](#previous_route)
- [type](#type)
- [Deprecated Attributes](#deprecated-attributes)
- [cls](#cls)
- [environment](#environment)
- [fs_error](#fs_error)
- [inp](#inp)
- [lcp](#lcp)
- [method](#method)
- [profile_id](#profile_id)
- [release](#release)
Expand Down Expand Up @@ -92,6 +95,20 @@ More granular type of the operation happening.

These attributes are deprecated and will be removed in a future version. Please use the recommended replacements.

### cls

The value of the recorded Cumulative Layout Shift (CLS) web vital

| Property | Value |
| --- | --- |
| Type | `double` |
| Has PII | maybe |
| Exists in OpenTelemetry | No |
| Example | `0.2361` |
| Deprecated | Yes, use `browser.web_vital.cls.value` instead |
| Deprecation Reason | The CLS web vital is now recorded as a browser.web_vital.cls.value attribute. |
| Aliases | `browser.web_vital.cls.value` |

### environment

The sentry environment.
Expand All @@ -118,6 +135,34 @@ The error message of a file system error.
| Deprecated | Yes, use `error.type` instead |
| Deprecation Reason | This attribute is not part of the OpenTelemetry specification and error.type fits much better. |

### inp

The value of the recorded Interaction to Next Paint (INP) web vital

| Property | Value |
| --- | --- |
| Type | `double` |
| Has PII | maybe |
| Exists in OpenTelemetry | No |
| Example | `200` |
| Deprecated | Yes, use `browser.web_vital.inp.value` instead |
| Deprecation Reason | The INP web vital is now recorded as a browser.web_vital.inp.value attribute. |
| Aliases | `browser.web_vital.inp.value` |

### lcp

The value of the recorded Largest Contentful Paint (LCP) web vital

| Property | Value |
| --- | --- |
| Type | `double` |
| Has PII | maybe |
| Exists in OpenTelemetry | No |
| Example | `2500` |
| Deprecated | Yes, use `browser.web_vital.lcp.value` instead |
| Deprecation Reason | The LCP web vital is now recorded as a browser.web_vital.lcp.value attribute. |
| Aliases | `browser.web_vital.lcp.value` |

### method

The HTTP method used.
Expand Down
Loading
Loading