blob: b5386d3d07251ac2eef8f8c520a0f66c88958a52 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001# The entries in this file map a sparse set of log tag numbers to tag names.
2# This is installed on the device, in /system/etc, and parsed by logcat.
3#
4# Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
5# negative values alone for now.)
6#
7# Tag names are one or more ASCII letters and numbers or underscores, i.e.
8# "[A-Z][a-z][0-9]_". Do not include spaces or punctuation (the former
9# impacts log readability, the latter makes regex searches more annoying).
10#
11# Tag numbers and names are separated by whitespace. Blank lines and lines
12# starting with '#' are ignored.
13#
14# Optionally, after the tag names can be put a description for the value(s)
15# of the tag. Description are in the format
16# (<name>|data type[|data unit])
17# Multiple values are separated by commas.
18#
19# The data type is a number from the following values:
20# 1: int
21# 2: long
22# 3: string
23# 4: list
Jim Miller04ac5882009-07-01 18:28:04 -070024#
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080025# The data unit is a number taken from the following list:
26# 1: Number of objects
27# 2: Number of bytes
28# 3: Number of milliseconds
29# 4: Number of allocations
30# 5: Id
31# 6: Percent
32# Default value for data of type int/long is 2 (bytes).
33#
34# TODO: generate ".java" and ".h" files with integer constants from this file.
35
36# These are used for testing, do not modify without updating
37# tests/framework-tests/src/android/util/EventLogFunctionalTest.java.
3842 answer (to life the universe etc|3)
39314 pi
402718 e
41
422719 configuration_changed (config mask|1|5)
432720 sync (id|3),(event|1|5),(source|1|5)
442721 cpu (total|1|6),(user|1|6),(system|1|6),(iowait|1|6),(irq|1|6),(softirq|1|6)
452722 battery_level (level|1|6),(voltage|1|1),(temperature|1|1)
462723 battery_status (status|1|5),(health|1|5),(present|1|5),(plugged|1|5),(technology|3)
47# This is logged when the device is being forced to sleep (typically by
48# the user pressing the power button).
492724 power_sleep_requested (wakeLocksCleared|1|1)
50# This is logged when the screen on broadcast has completed
512725 power_screen_broadcast_send (wakelockCount|1|1)
52# This is logged when the screen broadcast has completed
532726 power_screen_broadcast_done (on|1|5),(broadcastDuration|2|3),(wakelockCount|1|1)
54# This is logged when the screen on broadcast has completed
552727 power_screen_broadcast_stop (which|1|5),(wakelockCount|1|1)
56# This is logged when the screen is turned on or off.
572728 power_screen_state (offOrOn|1|5),(becauseOfUser|1|5),(totalTouchDownTime|2|3),(touchCycles|1|1)
58# This is logged when the partial wake lock (keeping the device awake
59# regardless of whether the screen is off) is acquired or released.
602729 power_partial_wake_state (releasedorAcquired|1|5),(tag|3)
Jim Miller04ac5882009-07-01 18:28:04 -070061# This is logged when battery goes from discharging to charging.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080062# It lets us count the total amount of time between charges and the discharge level
632730 battery_discharge (duration|2|3),(minLevel|1|6),(maxLevel|1|6)
64#
Jim Miller04ac5882009-07-01 18:28:04 -070065# Leave IDs through 2739 for more power logs
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080066#
67
68# This event is logged when the location service uploads location data.
692740 location_controller
70# This event is logged when someone is deciding to force a garbage collection
712741 force_gc (reason|3)
72# This event is logged on each tickle
732742 tickle (authority|3)
74# What happens in a sync operation (bytes sent and received, and
75# operation details)
762743 sync_details (authority|3),(send|1|2),(recv|1|2),(details|3)
77
78# The disk space free on the /data partition, in bytes
792744 free_storage_changed (data|2|2)
80# Device low memory notification and disk space free on the /data partition, in bytes at that time
812745 low_storage (data|2|2)
82# disk space free on the /data partition in bytes
832746 free_storage_left (data|2|2)
84
85# when a NotificationManager.notify is called
862750 notification_enqueue (pkg|3),(id|1|5),(notification|3)
87# when someone tries to cancel a notification, the notification manager sometimes
88# calls this with flags too
892751 notification_cancel (pkg|3),(id|1|5),(required_flags|1)
90# when someone tries to cancel all of the notifications for a particular package
912752 notification_cancel_all (pkg|3),(required_flags|1)
92
93# This event is logged when GTalkService encounters important events
942800 gtalkservice (eventType|1)
95# This event is logged for GTalk connection state changes. The status field is an int, but
96# it really contains 4 separate values, each taking up a byte
Wei Huang9d0d8882009-06-17 14:38:28 -070097# (eventType << 24) + (connection state << 16) + (connection error << 8) + network state
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800982801 gtalk_connection (status|1)
99
1002802 watchdog (Service|3)
1012803 watchdog_proc_pss (Process|3),(Pid|1|5),(Pss|1|2)
1022804 watchdog_soft_reset (Process|3),(Pid|1|5),(MaxPss|1|2),(Pss|1|2),(Skip|3)
1032805 watchdog_hard_reset (Process|3),(Pid|1|5),(MaxPss|1|2),(Pss|1|2)
1042806 watchdog_pss_stats (EmptyPss|1|2),(EmptyCount|1|1),(BackgroundPss|1|2),(BackgroundCount|1|1),(ServicePss|1|2),(ServiceCount|1|1),(VisiblePss|1|2),(VisibleCount|1|1),(ForegroundPss|1|2),(ForegroundCount|1|1),(NoPssCount|1|1)
1052807 watchdog_proc_stats (DeathsInOne|1|1),(DeathsInTwo|1|1),(DeathsInThree|1|1),(DeathsInFour|1|1),(DeathsInFive|1|1)
1062808 watchdog_scheduled_reboot (Now|2|1),(Interval|1|3),(StartTime|1|3),(Window|1|3),(Skip|3)
1072809 watchdog_meminfo (MemFree|1|2),(Buffers|1|2),(Cached|1|2),(Active|1|2),(Inactive|1|2),(AnonPages|1|2),(Mapped|1|2),(Slab|1|2),(SReclaimable|1|2),(SUnreclaim|1|2),(PageTables|1|2)
1082810 watchdog_vmstat (runtime|2|3),(pgfree|1|1),(pgactivate|1|1),(pgdeactivate|1|1),(pgfault|1|1),(pgmajfault|1|1)
1092811 watchdog_requested_reboot (NoWait|1|1),(ScheduleInterval|1|3),(RecheckInterval|1|3),(StartTime|1|3),(Window|1|3),(MinScreenOff|1|3),(MinNextAlarm|1|3)
110
Dan Egnor894c5cd2009-07-27 12:28:59 -07001112820 backup_data_changed (Package|3)
1122821 backup_start (Transport|3)
1132822 backup_transport_failure (Package|3)
1142823 backup_agent_failure (Package|3),(Message|3)
1152824 backup_package (Package|3),(Size|1|2)
1162825 backup_success (Packages|1|1),(Time|1|3)
117
1182830 restore_start (Transport|3)
1192831 restore_transport_failure
1202832 restore_agent_failure (Package|3),(Message|3)
1212833 restore_package (Package|3),(Size|1|2)
1222834 restore_success (Packages|1|1),(Time|1|3)
123
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800124# Device boot timings. We include monotonic clock values because the
125# intrinsic event log times are wall-clock.
126#
127# Runtime starts:
1283000 boot_progress_start (time|2|3)
129# SystemServer.run() starts:
1303010 boot_progress_system_run (time|2|3)
131# ZygoteInit class preloading starts:
1323020 boot_progress_preload_start (time|2|3)
133# ZygoteInit class preloading ends:
1343030 boot_progress_preload_end (time|2|3)
135# ActivityManagerService.systemReady() starts:
1363040 boot_progress_ams_ready (time|2|3)
137# ActivityManagerService calls enableScreenAfterBoot():
1383050 boot_progress_enable_screen (time|2|3)
139# Package Manager starts:
1403060 boot_progress_pms_start (time|2|3)
141# Package Manager .apk scan starts:
1423070 boot_progress_pms_system_scan_start (time|2|3)
143# Package Manager .apk scan starts:
1443080 boot_progress_pms_data_scan_start (time|2|3)
145# Package Manager .apk scan ends:
1463090 boot_progress_pms_scan_end (time|2|3)
147# Package Manager ready:
1483100 boot_progress_pms_ready (time|2|3)
149# + check activity_launch_time for Home app
150
Wei Huang9d0d8882009-06-17 14:38:28 -0700151# This event is logged when GTalk connection is closed.
152# The status field is an int, but contains 2 different values, it's represented as
153#
154# (networkType << 8) + connection error
155#
156# the possible error values are
157#
158# no_error=0, no_network=1, connection_failed=2, unknown_host=3, auth_failed=4,
159# auth_expired=5, heart_beat_timeout=6, server_error=7, server_reject_rate_limiting=8, unknown=10
160#
161# duration is the connection duration.
1624000 gtalk_conn_close (status|1),(duration|1)
163
164# This event is logged for GTalk heartbeat resets
165# interval_and_nt contains both the heartbeat interval and the network type, It's represented as
166# (networkType << 16) + interval
167# interval is in seconds; network type can be 0 (mobile) or 1 (wifi); ip is the host ip addr.
1684001 gtalk_heartbeat_reset (interval_and_nt|1),(ip|3)
169
Dan Egnor894c5cd2009-07-27 12:28:59 -0700170# dvm_gc_info: LIST (LONG, LONG, LONG)
171#
172# First LONG:
173#
174# [63] 1
175# [62-24] ASCII process identifier
176# [23-12] GC time in ms
177# [11- 0] Bytes freed
178#
179# Second LONG (aggregated heap info):
180#
181# [63-62] 10
182# [61-60] Reserved; must be zero
183# [59-48] Objects freed
184# [47-36] Actual size (current footprint)
185# [35-24] Allowed size (current hard max)
186# [23-12] Objects allocated
187# [11- 0] Bytes allocated
188#
189# Third LONG (zygote heap info):
190#
191# [63-62] 11
192# [61-60] Reserved; must be zero
193# [59-48] Soft limit
194# [47-36] Actual size (current footprint)
195# [35-24] Allowed size (current hard max)
196# [23-12] Objects allocated
197# [11- 0] Bytes allocated
198#
199# Fourth LONG:
200#
201# [63-48] Reserved; must be zero
202# [47-36] dlmallocFootprint
203# [35-24] mallinfo: total allocated space
204# [23-12] External byte limit
205# [11- 0] External bytes allocated
206#
207# See HeapDebug.c
208#
20920001 dvm_gc_info (custom|2),(custom|2),(custom|2),(custom|2)
21020002 dvm_gc_madvise_info (total|1|2),(zygote|1|2)
Wei Huang9d0d8882009-06-17 14:38:28 -0700211
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800212# Do not change these names without updating the checkin_events setting in
213# google3/googledata/wireless/android/provisioning/gservices.config !!
214#
215# An activity is being finished:
21630001 am_finish_activity (Token|1|5),(Task ID|1|5),(Component Name|3),(Reason|3)
217# A task is being brought to the front of the screen:
21830002 am_task_to_front (Task|1|5)
219# An existing activity is being given a new intent:
22030003 am_new_intent (Token|1|5),(Task ID|1|5),(Component Name|3),(Action|3),(MIME Type|3),(URI|3),(Flags|1|5)
221# A new task is being created:
22230004 am_create_task (Task ID|1|5)
223# A new activity is being created in an existing task:
22430005 am_create_activity (Token|1|5),(Task ID|1|5),(Component Name|3),(Action|3),(MIME Type|3),(URI|3),(Flags|1|5)
225# An activity has been resumed into the foreground but was not already running:
22630006 am_restart_activity (Token|1|5),(Task ID|1|5),(Component Name|3)
227# An activity has been resumed and is now in the foreground:
22830007 am_resume_activity (Token|1|5),(Task ID|1|5),(Component Name|3)
229# Application Not Responding
23030008 anr (pid|1|5),(Package Name|3),(reason|3)
231# Activity launch time
23230009 activity_launch_time (Token|1|5),(Component Name|3),(time|2|3)
233# Application process bound to work
23430010 am_proc_bound (PID|1|5),(Process Name|3)
235# Application process died
23630011 am_proc_died (PID|1|5),(Process Name|3)
Jim Miller04ac5882009-07-01 18:28:04 -0700237# The Activity Manager failed to pause the given activity.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080023830012 am_failed_to_pause (Token|1|5),(Wanting to pause|3),(Currently pausing|3)
Jim Miller04ac5882009-07-01 18:28:04 -0700239# Attempting to pause the current activity
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080024030013 am_pause_activity (Token|1|5),(Component Name|3)
241# Application process has been started
24230014 am_proc_start (PID|1|5),(UID|1|5),(Process Name|3),(Type|3),(Component|3)
243# An application process has been marked as bad
24430015 am_proc_bad (UID|1|5),(Process Name|3)
245# An application process that was bad is now marked as good
24630016 am_proc_good (UID|1|5),(Process Name|3)
247# Reporting to applications that memory is low
24830017 am_low_memory (Num Processes|1|1)
249# An activity is being destroyed:
25030018 am_destroy_activity (Token|1|5),(Task ID|1|5),(Component Name|3)
251# An activity has been relaunched, resumed, and is now in the foreground:
25230019 am_relaunch_resume_activity (Token|1|5),(Task ID|1|5),(Component Name|3)
253# An activity has been relaunched:
25430020 am_relaunch_activity (Token|1|5),(Task ID|1|5),(Component Name|3)
255# The activity's onPause has been called.
25630021 am_on_paused_called (Component Name|3)
257# The activity's onResume has been called.
25830022 am_on_resume_called (Component Name|3)
259# Kill a process to reclaim memory.
26030023 am_kill_for_memory (PID|1|5),(Process Name|3),(OomAdj|1|5)
261# Discard an undelivered serialized broadcast (timeout/ANR/crash)
26230024 am_broadcast_discard_filter (Broadcast|1|5),(Action|3),(Receiver Number|1|1),(BroadcastFilter|1|5)
26330025 am_broadcast_discard_app (Broadcast|1|5),(Action|3),(Receiver Number|1|1),(App|3)
264# A service is being created
26530030 am_create_service (Service Record|1|5),(Name|3),(Intent|3),(PID|1|5)
266# A service is being destroyed
26730031 am_destroy_service (Service Record|1|5),(Name|3),(PID|1|5)
268# A process has crashed too many times, it is being cleared
26930032 am_process_crashed_too_much (Name|3),(PID|1|5)
270# An unknown process is trying to attach to the activity manager
27130033 am_drop_process (PID|1|5)
272# A service has crashed too many times, it is being stopped
27330034 am_service_crashed_too_much (Crash Count|1|1),(Component Name|3),(PID|1|5)
274# A service is going to be restarted after its process went away
27530035 am_schedule_service_restart (Component Name|3),(Time|2|3)
276# A client was waiting for a content provider, but its process was lost
27730036 am_provider_lost_process (Package Name|3),(UID|1|5),(Name|3)
278
279# Out of memory for surfaces.
28031000 wm_no_surface_memory (Window|3),(PID|1|5),(Operation|3)
281
282# Re-connecting to input method service because we haven't received its interface
28332000 imf_force_reconnect_ime (IME|4),(Time Since Connect|2|3),(Showing|1|1)
284
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080028575000 sqlite_mem_alarm_current (current|1|2)
28675001 sqlite_mem_alarm_max (max|1|2)
28775002 sqlite_mem_alarm_alloc_attempt (attempts|1|4)
28875003 sqlite_mem_released (Memory released|1|2)
289
29040000 checkin (Check in time|2|3)
291
29250000 menu_item_selected (Menu type where 0 is options and 1 is context|1|5),(Menu item title|3)
29350001 menu_opened (Menu type where 0 is options and 1 is context|1|5)
294# Connectivity state changed:
295# [31-13] Reserved for future use
296# [12- 9] Network subtype (for mobile network, as defined by TelephonyManager)
Jim Miller04ac5882009-07-01 18:28:04 -0700297# [ 8- 3] Detailed state ordinal (as defined by NetworkInfo.DetailedState)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800298# [ 2- 0] Network type (as defined by ConnectivityManager)
29950020 connectivity_state_changed (custom|1|5)
300
301# Wi-Fi network state changed:
302# [31- 6] Reserved for future use
Jim Miller04ac5882009-07-01 18:28:04 -0700303# [ 5- 0] Detailed state ordinal (as defined by NetworkInfo.DetailedState)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080030450021 wifi_network_state_changed (network_state|1|5)
305
306# Wi-Fi supplicant state changed:
307# [31- 6] Reserved for future use
Jim Miller04ac5882009-07-01 18:28:04 -0700308# [ 5- 0] Supplicant state ordinal (as defined by SupplicantState)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080030950022 wifi_supplicant_state_changed (supplicant_state|1|5)
310
311# Wi-Fi driver state changed:
312# [31- 1] Reserved for future use
Jim Miller04ac5882009-07-01 18:28:04 -0700313# [ 0- 0] Driver start (1) or stopped (0)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080031450023 wifi_driver_state_changed (driver_state|1|5)
315
316# Wi-Fi interface configuration state changed:
317# [31- 1] Reserved for future use
Jim Miller04ac5882009-07-01 18:28:04 -0700318# [ 0- 0] Interface configuration succeeded (1) or failed (0)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080031950024 wifi_interface_configuration_state_changed (IP_configuration|1|5)
320
321# Wi-Fi supplicant connection state changed:
322# [31- 2] Reserved for future use
323# [ 1- 0] Connected to supplicant (1) or disconnected from supplicant (0),
324# or supplicant died (2)
32550025 wifi_supplicant_connection_state_changed (connected|1|5)
326
327# PDP Context has a bad DNS address
32850100 pdp_bad_dns_address (dns_address|3)
329
330# For data connection on PDP context, reached the data-out-without-data-in
331# packet count that triggers a countdown to radio restart
33250101 pdp_radio_reset_countdown_triggered (out_packet_count|1|1)
333
334# Radio restart - timed out with no incoming packets.
33550102 pdp_radio_reset (out_packet_count|1|1)
336
337# PDP context reset - timed out with no incoming packets.
33850103 pdp_context_reset (out_packet_count|1|1)
339
340# Reregister to data network - timed out with no incoming packets.
34150104 pdp_reregister_network (out_packet_count|1|1)
342
343# PDP Setup failures
34450105 pdp_setup_fail (cause|1|5), (cid|1|5), (network_type|1|5)
345
346# Call drops
34750106 call_drop (cause|1|5), (cid|1|5), (network_type|1|5)
348
349# Data network registration failed after successful voice registration
35050107 data_network_registration_fail (op_numeric|1|5), (cid|1|5)
351
352# Suspicious status of data connection while radio poweroff
35350108 data_network_status_on_radio_off (dc_state|3), (enable|1|5)
354
355# PDP drop caused by network
35650109 pdp_network_drop (cid|1|5), (network_type|1|5)
357
Tammo Spalink473b9b22009-05-19 15:26:18 +0800358# CDMA data network setup failure
35950110 cdma_data_setup_failed (cause|1|5), (cid|1|5), (network_type|1|5)
360
361# CDMA data network drop
36250111 cdma_data_drop (cid|1|5), (network_type|1|5)
363
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800364# Do not change these names without updating tag in:
365#//device/dalvik/libcore/luni/src/main/native/org_apache_harmony_luni_platform_OSNetworkSystem.c
36651000 socket_stats (send|1|2),(recv|1|2),(ip|1|5),(port|1|5),(close|1|5)
367
Jim Miller04ac5882009-07-01 18:28:04 -0700368# db stats. 0 is query, 1 is write (may become more fine grained in the
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800369# future)
37052000 db_operation (name|3),(op_type|1|5),(time|2|3)
371
372# http request/response stats
37352001 http_stats (useragent|3),(response|2|3),(processing|2|3),(tx|1|2),(rx|1|2)
37460000 viewroot_draw (Draw time|1|3)
37560001 viewroot_layout (Layout time|1|3)
37660002 view_build_drawing_cache (View created drawing cache|1|5)
37760003 view_use_drawing_cache (View drawn using bitmap cache|1|5)
378
379# 0 for screen off, 1 for screen on, 2 for key-guard done
38070000 screen_toggled (screen_state|1|5)
381
382# browser stats for diary study
38370101 browser_zoom_level_change (start level|1|5),(end level|1|5),(time|2|3)
38470102 browser_double_tap_duration (duration|1|3),(time|2|3)
Jim Millercae5f6a2009-06-08 19:00:27 -0700385
386# aggregation service
38770200 aggregation (aggregation time|2|3)
Jim Miller04ac5882009-07-01 18:28:04 -070038870201 aggregation_test (field1|1|2),(field2|1|2),(field3|1|2),(field4|1|2),(field5|1|2)
The Android Open Source Project38e26492009-06-12 11:14:35 -0700389
Dan Egnor2cf6cff2009-06-11 15:28:59 -0700390# NOTE - the range 1000000-2000000 is reserved for partners and others who
391# want to define their own log tags without conflicting with the core platform.