EventLogTags.logtags revision 5f71d5746ec042ad2e5c1eee8c83514f92534372
1# See system/core/logcat/event.logtags for a description of the format of this file.
2
3option java_package com.android.quicksearchbox
4
5# QSB started
6# @param name Package name of the QSB app.
7# @param version QSB app versionCode value.
8# @param start_method
9#   TODO: Define values for start_method:
10#     - home screen widget
11#     - through source selector
12#     - by touching text field
13#     - search hard key on home screen
14#     - menu -> search on home screen
15#     - source selector in in-app search dialog
16#     - search hardkey in in-app search dialog
17#     - search hardkey in non-searchable app
18#     - app called SearchManager.startSearch()
19# @param latency start-up latency as seen by QSB
20# @param search_source name of the initially selected search source
21# @param enabled_sources A pipe-separated list of source names, ordered by source ranking.
22#                TODO: Which are promoted?
2371001 qsb_start (name|3),(version|1),(start_method|3),(latency|1|3),(search_source|3),(enabled_sources|3)
24
25# User clicked on a suggestion
26# @param position 0-based index of the clicked suggestion
27# @param A pipe-separated list of suggestion log names.
28#   TODO: define format of suggestion log names
29# @param queried_sources A pipe-separated list of the sources that were queried to produce
30#        the list of suggestions shown.
31# @param num_chars Number of characters in the query typed by the user
32# @param click_type
33#     SUGGESTION_CLICK_TYPE_LAUNCH = 0
34#     SUGGESTION_CLICK_TYPE_REFINE = 1
35#
36# TODO: latency?
3771002 qsb_click (position|1),(suggestions|3),(queried_sources|3),(num_chars|1),(click_type|1)
38
39# User launched a typed search
40# @param search_source Name of the selected search source
41# @param method
42#     SEARCH_METHOD_BUTTON = 0
43#     SEARCH_METHOD_KEYBOARD = 1
44# @param num_chars The number of characters in the search query
4571003 qsb_search (search_source|3),(method|1),(num_chars|1)
46
47# User launched a Voice Search
48# @param search_source Name of the selected search source
4971004 qsb_voice_search (search_source|3)
50
51# User left QSB without clicking / searching
52# @param suggestions The suggestions shown when the user left QSB. See qsb_click above.
53# @param num_chars The number of characters in the query text field when the user left
5471005 qsb_exit (suggestions|3),(num_chars|1)
55
56# The latency of a suggestion query to a specific corpus.
57# @param corpus The corpus that was queried.
58# @param latency Query latency.
59# @param numChars Number of characters in the query.
6071006 qsb_latency (corpus|3),(latency|1|3),(num_chars|1)
61