Skip to content

Commit

Permalink
model/profile: add frame.type for Erlang
Browse files Browse the repository at this point in the history
Extend the list of known frame types with a value for Erlang.

Signed-off-by: Florian Lehner <[email protected]>
  • Loading branch information
florianl committed Jan 10, 2025
1 parent 1aa6a5c commit 3c72a30
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .chloggen/profile-frame-type-beam.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Use this changelog template to create an entry for release notes.
#
# If your change doesn't affect end users you should instead start
# your pull request title with [chore] or use the "Skip Changelog" label.

# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: enhancement

# The name of the area of concern in the attributes-registry, (e.g. http, cloud, db)
component: profile.frame.type

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: 'Extend the list of known frame types with a value for Erlang'

# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
# The values here must be integers.
issues: [1]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext:
1 change: 1 addition & 0 deletions docs/attributes-registry/profile.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Describes the origin of a single frame in a Profile.

| Value | Description | Stability |
|---|---|---|
| `beam` | [Erlang](https://en.wikipedia.org/wiki/BEAM_(Erlang_virtual_machine)) | ![Experimental](https://img.shields.io/badge/-experimental-blue) |
| `cpython` | [Python](https://wikipedia.org/wiki/Python_(programming_language)) | ![Experimental](https://img.shields.io/badge/-experimental-blue) |
| `dotnet` | [.NET](https://wikipedia.org/wiki/.NET) | ![Experimental](https://img.shields.io/badge/-experimental-blue) |
| `jvm` | [JVM](https://wikipedia.org/wiki/Java_virtual_machine) | ![Experimental](https://img.shields.io/badge/-experimental-blue) |
Expand Down
1 change: 1 addition & 0 deletions docs/general/profiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ They may be used in any Profiles record they apply to.

| Value | Description | Stability |
|---|---|---|
| `beam` | [Erlang](https://en.wikipedia.org/wiki/BEAM_(Erlang_virtual_machine)) | ![Experimental](https://img.shields.io/badge/-experimental-blue) |
| `cpython` | [Python](https://wikipedia.org/wiki/Python_(programming_language)) | ![Experimental](https://img.shields.io/badge/-experimental-blue) |
| `dotnet` | [.NET](https://wikipedia.org/wiki/.NET) | ![Experimental](https://img.shields.io/badge/-experimental-blue) |
| `jvm` | [JVM](https://wikipedia.org/wiki/Java_virtual_machine) | ![Experimental](https://img.shields.io/badge/-experimental-blue) |
Expand Down
5 changes: 5 additions & 0 deletions model/profile/registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,8 @@ groups:
[V8JS](https://wikipedia.org/wiki/V8_(JavaScript_engine))
value: "v8js"
stability: experimental
- id: beam

Check failure on line 64 in model/profile/registry.yaml

View workflow job for this annotation

GitHub Actions / yamllint

[trailing-spaces] trailing spaces
brief: >
[Erlang](https://en.wikipedia.org/wiki/BEAM_(Erlang_virtual_machine))
value: "beam"
stability: experimental

0 comments on commit 3c72a30

Please sign in to comment.