-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move webengine attributes to the registry (#901)
Co-authored-by: Armin Ruech <[email protected]>
- Loading branch information
1 parent
ccb6db6
commit f731ca7
Showing
8 changed files
with
51 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!--- Hugo front matter used to generate the website version of this page: | ||
---> | ||
|
||
# Webengine | ||
|
||
## Webengine Attributes | ||
|
||
<!-- semconv registry.webengine(omit_requirement_level) --> | ||
| Attribute | Type | Description | Examples | Stability | | ||
|---|---|---|---|---| | ||
| `webengine.description` | string | Additional description of the web engine (e.g. detailed version and edition information). | `WildFly Full 21.0.0.Final (WildFly Core 13.0.1.Final) - 2.2.2.Final` | ![Experimental](https://img.shields.io/badge/-experimental-blue) | | ||
| `webengine.name` | string | The name of the web engine. | `WildFly` | ![Experimental](https://img.shields.io/badge/-experimental-blue) | | ||
| `webengine.version` | string | The version of the web engine. | `21.0.0` | ![Experimental](https://img.shields.io/badge/-experimental-blue) | | ||
<!-- endsemconv --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
groups: | ||
- id: registry.webengine | ||
prefix: webengine | ||
type: attribute_group | ||
brief: > | ||
This document defines the attributes used to describe the packaged software running the application code. | ||
attributes: | ||
- id: name | ||
type: string | ||
stability: experimental | ||
brief: > | ||
The name of the web engine. | ||
examples: ['WildFly'] | ||
- id: version | ||
type: string | ||
stability: experimental | ||
brief: > | ||
The version of the web engine. | ||
examples: ['21.0.0'] | ||
- id: description | ||
type: string | ||
stability: experimental | ||
brief: > | ||
Additional description of the web engine (e.g. detailed version and edition information). | ||
examples: ['WildFly Full 21.0.0.Final (WildFly Core 13.0.1.Final) - 2.2.2.Final'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,12 @@ | ||
groups: | ||
- id: webengine_resource | ||
prefix: webengine | ||
type: resource | ||
brief: > | ||
Resource describing the packaged software running the application code. Web engines are typically executed using process.runtime. | ||
attributes: | ||
- id: name | ||
type: string | ||
stability: experimental | ||
- ref: webengine.name | ||
requirement_level: required | ||
brief: > | ||
The name of the web engine. | ||
examples: ['WildFly'] | ||
- id: version | ||
type: string | ||
stability: experimental | ||
brief: > | ||
The version of the web engine. | ||
examples: ['21.0.0'] | ||
- id: description | ||
type: string | ||
stability: experimental | ||
brief: > | ||
Additional description of the web engine (e.g. detailed version and edition information). | ||
examples: ['WildFly Full 21.0.0.Final (WildFly Core 13.0.1.Final) - 2.2.2.Final'] | ||
- ref: webengine.version | ||
requirement_level: recommended | ||
- ref: webengine.description | ||
requirement_level: recommended |