View Source OpenTelemetry.SemConv.Incubating.AndroidAttributes (OpenTelemetry.SemConv v1.27.0)
OpenTelemetry Semantic Conventions for Android attributes.
Summary
Types
Deprecated use the device.app.lifecycle
event definition including android.state
as a payload field instead.
Types
@type android_state_values() :: %{
created: :created,
background: :background,
foreground: :foreground
}
Deprecated use the device.app.lifecycle
event definition including android.state
as a payload field instead.
Enum Values
:created
e - Any time before Activity.onResume() or, if the app has no Activity, Context.startService() has been called in the app for the first time.:background
e - 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.:foreground
e - 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.
Functions
@spec android_os_api_level() :: :"android.os.api_level"
Uniquely identifies the framework API revision offered by a version (os.version
) of the android operating system. More information can be found here.
Value type
Value must be of type atom() | String.t()
.
Examples
["33", "32"]
iex> OpenTelemetry.SemConv.Incubating.AndroidAttributes.android_os_api_level()
:"android.os.api_level"
?ANDROID_OS_API_LEVEL.
'android.os.api_level'
@spec android_state() :: :"android.state"
Deprecated use the device.app.lifecycle
event definition including android.state
as a payload field instead.
Notes
The Android lifecycle states are defined in Activity lifecycle callbacks, and from which the OS identifiers
are derived.
iex> OpenTelemetry.SemConv.Incubating.AndroidAttributes.android_state()
:"android.state"
iex> OpenTelemetry.SemConv.Incubating.AndroidAttributes.android_state_values().created
:created
iex> %{OpenTelemetry.SemConv.Incubating.AndroidAttributes.android_state() => OpenTelemetry.SemConv.Incubating.AndroidAttributes.android_state_values().created}
%{:"android.state" => :created}
?ANDROID_STATE.
'android.state'
?ANDROID_STATE_VALUES_CREATED.
'created'
#{?ANDROID_STATE => ?ANDROID_STATE_VALUES_CREATED}.
#{'android.state' => 'created'}
@spec android_state_values() :: android_state_values()