Skip to content

Commit b0f3969

Browse files
florianllmolkovajoaopgrassi
authored
model/profile: add frame.type for Erlang (#1735)
Signed-off-by: Florian Lehner <[email protected]> Co-authored-by: Liudmila Molkova <[email protected]> Co-authored-by: Joao Grassi <[email protected]>
1 parent e95f8fd commit b0f3969

File tree

4 files changed

+29
-0
lines changed

4 files changed

+29
-0
lines changed

Diff for: .chloggen/profile-frame-type-beam.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Use this changelog template to create an entry for release notes.
2+
#
3+
# If your change doesn't affect end users you should instead start
4+
# your pull request title with [chore] or use the "Skip Changelog" label.
5+
6+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
7+
change_type: enhancement
8+
9+
# The name of the area of concern in the attributes-registry, (e.g. http, cloud, db)
10+
component: profile
11+
12+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
13+
note: 'Extend the list of known frame types with a value for Erlang'
14+
15+
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
16+
# The values here must be integers.
17+
issues: [1735]
18+
19+
# (Optional) One or more lines of additional information to render under the primary note.
20+
# These lines will be padded with 2 spaces and then inserted directly into the document.
21+
# Use pipe (|) for multiline entries.
22+
subtext:

Diff for: docs/attributes-registry/profile.md

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Describes the origin of a single frame in a Profile.
2020

2121
| Value | Description | Stability |
2222
|---|---|---|
23+
| `beam` | [Erlang](https://en.wikipedia.org/wiki/BEAM_(Erlang_virtual_machine)) | ![Experimental](https://img.shields.io/badge/-experimental-blue) |
2324
| `cpython` | [Python](https://wikipedia.org/wiki/Python_(programming_language)) | ![Experimental](https://img.shields.io/badge/-experimental-blue) |
2425
| `dotnet` | [.NET](https://wikipedia.org/wiki/.NET) | ![Experimental](https://img.shields.io/badge/-experimental-blue) |
2526
| `jvm` | [JVM](https://wikipedia.org/wiki/Java_virtual_machine) | ![Experimental](https://img.shields.io/badge/-experimental-blue) |

Diff for: docs/general/profiles.md

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ They may be used in any Profiles record they apply to.
3636

3737
| Value | Description | Stability |
3838
|---|---|---|
39+
| `beam` | [Erlang](https://en.wikipedia.org/wiki/BEAM_(Erlang_virtual_machine)) | ![Experimental](https://img.shields.io/badge/-experimental-blue) |
3940
| `cpython` | [Python](https://wikipedia.org/wiki/Python_(programming_language)) | ![Experimental](https://img.shields.io/badge/-experimental-blue) |
4041
| `dotnet` | [.NET](https://wikipedia.org/wiki/.NET) | ![Experimental](https://img.shields.io/badge/-experimental-blue) |
4142
| `jvm` | [JVM](https://wikipedia.org/wiki/Java_virtual_machine) | ![Experimental](https://img.shields.io/badge/-experimental-blue) |

Diff for: model/profile/registry.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,8 @@ groups:
6161
[V8JS](https://wikipedia.org/wiki/V8_(JavaScript_engine))
6262
value: "v8js"
6363
stability: experimental
64+
- id: beam
65+
brief: >
66+
[Erlang](https://en.wikipedia.org/wiki/BEAM_(Erlang_virtual_machine))
67+
value: "beam"
68+
stability: experimental

0 commit comments

Comments
 (0)