Migrate phone apps crashes sensor to new data stream
parent
47e1b33816
commit
b49dab0949
|
@ -112,6 +112,33 @@ Stream columns named `FLAG_TO_MUTATE` means they are extracted based on the `MUT
|
|||
- if stream's `confidence` field is 2, set `CONFIDENCE` = 100
|
||||
|
||||
|
||||
??? info "PHONE_APPLICATIONS_CRASHES"
|
||||
|
||||
=== "ANDROID"
|
||||
|
||||
**RAPIDS_COLUMN_MAPPINGS**
|
||||
|
||||
| RAPIDS column | Stream column |
|
||||
|--------------------|--------------------|
|
||||
| TIMESTAMP | timestamp |
|
||||
| DEVICE_ID | device_id |
|
||||
| PACKAGE_NAME | package_name |
|
||||
| APPLICATION_NAME | application_name |
|
||||
| APPLICATION_VERSION| application_version|
|
||||
| ERROR_SHORT | error_short |
|
||||
| ERROR_LONG | error_long |
|
||||
| ERROR_CONDITION | error_condition |
|
||||
| IS_SYSTEM_APP | is_system_app |
|
||||
|
||||
**MUTATION**
|
||||
|
||||
- **COLUMN_MAPPINGS** (None)
|
||||
- **SCRIPTS** (None)
|
||||
|
||||
=== "IOS"
|
||||
|
||||
This sensor is not supported by iOS devices.
|
||||
|
||||
|
||||
??? info "PHONE_APPLICATIONS_FOREGROUND"
|
||||
|
||||
|
|
|
@ -24,6 +24,21 @@ This is a description of the format RAPIDS needs to process data for the followi
|
|||
| CONFIDENCE | An integer (ranged from 0 to 100) that denotes the prediction accuracy |
|
||||
|
||||
|
||||
??? info "PHONE_APPLICATIONS_CRASHES"
|
||||
|
||||
| RAPIDS column | Description |
|
||||
|--------------------|---------------------------------------------------------------------------|
|
||||
| TIMESTAMP | An UNIX timestamp (13 digits) when a row of data was logged |
|
||||
| DEVICE_ID | A string that uniquely identifies a device |
|
||||
| PACKAGE_NAME | Application’s package name |
|
||||
| APPLICATION_NAME | Application’s localized name |
|
||||
| APPLICATION_VERSION| Application’s version code |
|
||||
| ERROR_SHORT | Short description of the error |
|
||||
| ERROR_LONG | More verbose version of the error description |
|
||||
| ERROR_CONDITION | 1 = code error; 2 = non-responsive (ANR error) |
|
||||
| IS_SYSTEM_APP | Device’s pre-installed application |
|
||||
|
||||
|
||||
??? info "PHONE_APPLICATIONS_FOREGROUND"
|
||||
|
||||
| RAPIDS column | Description |
|
||||
|
|
|
@ -45,6 +45,22 @@ PHONE_ACTIVITY_RECOGNITION:
|
|||
SCRIPTS: # List any python or r scripts that mutate your raw data
|
||||
- "src/data/streams/mutations/phone/aware/activity_recogniton_ios_unification.R"
|
||||
|
||||
PHONE_APPLICATIONS_CRASHES:
|
||||
ANDROID:
|
||||
RAPIDS_COLUMN_MAPPINGS:
|
||||
TIMESTAMP: timestamp
|
||||
DEVICE_ID: device_id
|
||||
PACKAGE_NAME: package_name
|
||||
APPLICATION_NAME: application_name
|
||||
APPLICATION_VERSION: application_version
|
||||
ERROR_SHORT: error_short
|
||||
ERROR_LONG: error_long
|
||||
ERROR_CONDITION: error_condition
|
||||
IS_SYSTEM_APP: is_system_app
|
||||
MUTATION:
|
||||
COLUMN_MAPPINGS:
|
||||
SCRIPTS: # List any python or r scripts that mutate your raw data
|
||||
|
||||
PHONE_APPLICATIONS_FOREGROUND:
|
||||
ANDROID:
|
||||
RAPIDS_COLUMN_MAPPINGS:
|
||||
|
|
|
@ -12,6 +12,17 @@ PHONE_ACTIVITY_RECOGNITION:
|
|||
- ACTIVITY_TYPE
|
||||
- CONFIDENCE
|
||||
|
||||
PHONE_APPLICATIONS_CRASHES:
|
||||
- TIMESTAMP
|
||||
- DEVICE_ID
|
||||
- PACKAGE_NAME
|
||||
- APPLICATION_NAME
|
||||
- APPLICATION_VERSION
|
||||
- ERROR_SHORT
|
||||
- ERROR_LONG
|
||||
- ERROR_CONDITION
|
||||
- IS_SYSTEM_APP
|
||||
|
||||
PHONE_APPLICATIONS_FOREGROUND:
|
||||
- TIMESTAMP
|
||||
- DEVICE_ID
|
||||
|
|
Loading…
Reference in New Issue