forked from open-telemetry/semantic-conventions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Group yaml files by root namespace instead of signal (open-telemetry#…
- Loading branch information
Showing
12 changed files
with
110 additions
and
209 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 was deleted.
Oops, something went wrong.
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,36 @@ | ||
groups: | ||
- id: registry.android.deprecated | ||
type: attribute_group | ||
display_name: Deprecated Android Attributes | ||
brief: > | ||
This document defines attributes that represents an occurrence of a lifecycle transition on the Android platform. | ||
attributes: | ||
- id: android.state | ||
stability: experimental | ||
deprecated: "Replaced by `device.app.lifecycle`." | ||
brief: > | ||
Deprecated use the `device.app.lifecycle` event definition including | ||
`android.state` as a payload field instead. | ||
note: > | ||
The Android lifecycle states are defined in [Activity lifecycle callbacks](https://developer.android.com/guide/components/activities/activity-lifecycle#lc), | ||
and from which the `OS identifiers` are derived. | ||
type: | ||
members: | ||
- id: created | ||
value: 'created' | ||
brief: > | ||
Any time before Activity.onResume() or, if the app has no Activity, Context.startService() | ||
has been called in the app for the first time. | ||
stability: experimental | ||
- id: background | ||
value: 'background' | ||
brief: > | ||
Any time after Activity.onPause() or, if the app has no Activity, | ||
Context.stopService() has been called when the app was in the foreground state. | ||
stability: experimental | ||
- id: foreground | ||
value: 'foreground' | ||
brief: > | ||
Any time after Activity.onResume() or, if the app has no Activity, | ||
Context.startService() has been called when the app was in either the created or background states. | ||
stability: experimental |
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,15 @@ | ||
groups: | ||
- id: registry.android | ||
type: attribute_group | ||
display_name: Android Attributes | ||
brief: > | ||
The Android platform on which the Android application is running. | ||
attributes: | ||
- id: android.os.api_level | ||
type: string | ||
stability: experimental | ||
brief: > | ||
Uniquely identifies the framework API revision offered by a version | ||
(`os.version`) of the android operating system. More information can be found | ||
[here](https://developer.android.com/guide/topics/manifest/uses-sdk-element#ApiLevels). | ||
examples: ['33', '32'] |
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,8 @@ | ||
groups: | ||
- id: android | ||
type: resource | ||
name: android | ||
brief: > | ||
The Android platform on which the Android application is running. | ||
attributes: | ||
- ref: android.os.api_level |
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,35 @@ | ||
groups: | ||
- id: registry.graphql | ||
type: attribute_group | ||
display_name: GraphQL Attributes | ||
brief: 'This document defines attributes for GraphQL.' | ||
attributes: | ||
- id: graphql.operation.name | ||
brief: "The name of the operation being executed." | ||
type: string | ||
stability: experimental | ||
examples: 'findBookById' | ||
- id: graphql.operation.type | ||
brief: "The type of the operation being executed." | ||
stability: experimental | ||
type: | ||
members: | ||
- id: query | ||
value: "query" | ||
brief: "GraphQL query" | ||
stability: experimental | ||
- id: mutation | ||
value: "mutation" | ||
brief: "GraphQL mutation" | ||
stability: experimental | ||
- id: subscription | ||
value: "subscription" | ||
brief: "GraphQL subscription" | ||
stability: experimental | ||
examples: ['query', 'mutation', 'subscription'] | ||
- id: graphql.document | ||
brief: "The GraphQL document being executed." | ||
type: string | ||
stability: experimental | ||
note: The value may be sanitized to exclude sensitive information. | ||
examples: 'query findBookById { bookById(id: ?) { name } }' |
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,13 @@ | ||
groups: | ||
- id: graphql | ||
type: span | ||
brief: > | ||
This document defines semantic conventions to apply when instrumenting the GraphQL implementation. They map | ||
GraphQL operations to attributes on a Span. | ||
attributes: | ||
- ref: graphql.operation.name | ||
requirement_level: recommended | ||
- ref: graphql.operation.type | ||
requirement_level: recommended | ||
- ref: graphql.document | ||
requirement_level: recommended |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.