Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
c96bf07b
Commit
c96bf07b
authored
May 23, 2014
by
Greg Price
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3817 from edx/gprice/forum-search-event-page
Add page num to forum search tracking log events
parents
38e882e8
eb0e6c90
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
10 deletions
+14
-10
docs/en_us/data/source/internal_data_formats/tracking_logs.rst
+10
-9
lms/lib/comment_client/thread.py
+4
-1
No files found.
docs/en_us/data/source/internal_data_formats/tracking_logs.rst
View file @
c96bf07b
...
...
@@ -1841,13 +1841,15 @@ After a user executes a text search in the navigation sidebar of the Discussion
``event`` **Fields**:
+---------------------+---------------+---------------------------------------------------------------------+
| Field | Type | Details |
+=====================+===============+=====================================================================+
| ``query`` | string | The text entered into the search box by the user. |
+---------------------+---------------+---------------------------------------------------------------------+
| ``total_results`` | integer | The total number of results matching the query. |
+---------------------+---------------+---------------------------------------------------------------------+
+---------------------+---------------+----------------------------------------------------------------------------------------------------+
| Field | Type | Details |
+=====================+===============+====================================================================================================+
| ``query`` | string | The text entered into the search box by the user. |
+---------------------+---------------+----------------------------------------------------------------------------------------------------+
| ``page`` | integer | Results are returned in sets of 20 per page. Identifies the page of results requested by the user. |
+---------------------+---------------+----------------------------------------------------------------------------------------------------+
| ``total_results`` | integer | The total number of results matching the query. |
+---------------------+---------------+----------------------------------------------------------------------------------------------------+
.. _Instructor_Event_Types:
...
...
@@ -2127,4 +2129,4 @@ members also generate enrollment events.
enrollment. When this feature is used to unenroll students from a course, the
server emits a ``edx.course.enrollment.deactivated`` for each unenrollment.
For details about the enrollment events, see :ref:`enrollment`.
\ No newline at end of file
For details about the enrollment events, see :ref:`enrollment`.
lms/lib/comment_client/thread.py
View file @
c96bf07b
...
...
@@ -61,6 +61,7 @@ class Thread(models.Model):
if
query_params
.
get
(
'text'
):
search_query
=
query_params
[
'text'
]
course_id
=
query_params
[
'course_id'
]
requested_page
=
params
[
'page'
]
total_results
=
response
.
get
(
'total_results'
)
# Record search result metric to allow search quality analysis.
# course_id is already included in the context for the event tracker
...
...
@@ -68,13 +69,15 @@ class Thread(models.Model):
'edx.forum.searched'
,
{
'query'
:
search_query
,
'page'
:
requested_page
,
'total_results'
:
total_results
,
}
)
log
.
info
(
'forum_text_search query="{search_query}" course_id={course_id} total_results={total_results}'
.
format
(
'forum_text_search query="{search_query}" course_id={course_id}
page={requested_page}
total_results={total_results}'
.
format
(
search_query
=
search_query
,
course_id
=
course_id
,
requested_page
=
requested_page
,
total_results
=
total_results
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment