Skip to content

Commit 6f0a740

Browse files
committed
fixes
1 parent c61cfd1 commit 6f0a740

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

schemas/semconv-schemas.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ full reference.
6666
The resolved version of the metric above would look like this:
6767

6868
```yaml
69-
attributes:
69+
attribute_catalog:
7070
...
7171
- key: my.operation.name
7272
type: string
@@ -77,20 +77,19 @@ attributes:
7777
registry:
7878
attributes:
7979
...
80-
- 888
81-
- 1042
80+
- 888 # this is the index of `server.address` in the attribute_catalog
81+
- 1042 # this is the index of `my.operation.name` in attribute_catalog
8282
...
8383
metrics:
8484
- name: my.client.operation.duration
8585
instrument: histogram
8686
unit: s
8787
attributes:
88-
- base: 1042 # this is the index of `my.operation.name` in attributes list
88+
- base: 1042 # this is the index of `my.operation.name` in attribute_catalog
8989
requirement_level: required
90-
- base: 888 # this is the index of `server.address` in the attributes list
90+
- base: 888 # this is the index of `server.address` in the attribute_catalog
9191
requirement_level: recommended
9292
...
93-
9493
```
9594

9695
Instead of references, we see indexes of attributes along with overridden properties.

0 commit comments

Comments
 (0)