EventLogTags.logtags revision 6824bf661c9d96a4ff38d0f0c2f1da81dc6f8ac3
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?
23? 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 Number of characters in the query typed by the user
32# TODO: action key?
33# TODO: latency?
34? qsb_click (position|1),(suggestions|3),(queried_sources|3),(num_chars|1)
35
36# User launched a typed search
37# @param search_source Name of the selected search source
38# @param method
39#     SEARCH_METHOD_BUTTON = 0
40#     SEARCH_METHOD_KEYBOARD = 1
41# @param num_chars The number of characters in the search query
42? qsb_search (search_source|3),(method|1),(num_chars|1)
43
44# User launched a Voice Search
45# @param search_source Name of the selected search source
46? qsb_voice_search (search_source|3)
47
48# User left QSB without clicking / searching
49# @param suggestions The suggestions shown when the user left QSB. See qsb_click above.
50# @param num_chars The number of characters in the query text field when the user left
51? qsb_exit (suggestions|3),(num_chars|1)
52
53# Suggestion latency of the web suggestion source
54# This is total latency from typing a character to having all results.
55# Log only for N% of queries?
56# TODO: blended vs single-app
57? qsb_web_latency (latency|1|3)
58