Skip to content

Commit

Permalink
Merge branch 'main' into messaging-protocol-requirement-level
Browse files Browse the repository at this point in the history
  • Loading branch information
joaopgrassi authored Jan 24, 2024
2 parents 46b5376 + c3e35ee commit cd48e1a
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ release.

- Add `azure_container_apps` to `cloud.platform` semantic conventions
([#615](https://github.com/open-telemetry/semantic-conventions/pull/615))
- Add `user_agent.name` and `user_agent.version` attributes
([#452](https://github.com/open-telemetry/semantic-conventions/pull/452/))
- Add an example for gcp_pubsub asynchronous batch publish
([#545](https://github.com/open-telemetry/semantic-conventions/pull/545)).
([#545](https://github.com/open-telemetry/semantic-conventions/pull/545))

### Fixes

Expand Down
6 changes: 6 additions & 0 deletions docs/attributes-registry/user-agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,11 @@
<!-- semconv registry.user_agent(omit_requirement_level) -->
| Attribute | Type | Description | Examples |
|---|---|---|---|
| `user_agent.name` | string | Name of the user-agent extracted from original. Usually refers to the browser's name [1] | `Safari` |
| `user_agent.original` | string | ![Stable](https://img.shields.io/badge/-stable-lightgreen)<br>Value of the [HTTP User-Agent](https://www.rfc-editor.org/rfc/rfc9110.html#field.user-agent) header sent by the client. | `CERN-LineMode/2.15 libwww/2.17b3`; `Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1` |
| `user_agent.version` | string | Version of the user-agent extracted from original. Usually refers to the browser's version [2] | `14.1.2` |

**[1]:** [Example](https://www.whatsmyua.info) of extracting browser's name from original string

**[2]:** [Example](https://www.whatsmyua.info) of extracting browser's version from original string
<!-- endsemconv -->
14 changes: 14 additions & 0 deletions model/registry/user-agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,17 @@ groups:
Value of the [HTTP User-Agent](https://www.rfc-editor.org/rfc/rfc9110.html#field.user-agent) header sent by the client.
examples: ['CERN-LineMode/2.15 libwww/2.17b3',
'Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1']
- id: name
type: string
brief: >
Name of the user-agent extracted from original. Usually refers to the browser's name
examples: ['Safari']
note: >
[Example](https://www.whatsmyua.info) of extracting browser's name from original string
- id: version
type: string
brief: >
Version of the user-agent extracted from original. Usually refers to the browser's version
examples: ['14.1.2']
note: >
[Example](https://www.whatsmyua.info) of extracting browser's version from original string

0 comments on commit cd48e1a

Please sign in to comment.