...
- [log4j_timestamp] : the timestamp of the log, set by the log4j API
- [log_level] : literally the log level value
- [logger_class] : the name of the class which has generated the log
- [line_in_class] : the line number in the class that has generated the log
- [query_id] : the id of the query. This id is used to keep track of the user behaviour.
For example, if the user search the word "engine", a query id is generated. Then, if the user click on the facet "Language=>fr" on the query results, the facet "sub-query" will keep the id of the "engine" query but will enrich his history - [query_timestamp] : the full timestamp of the query, measured by Datafari
- [query] : the literal query performed by the user
- [noHits] : indicates if the query does or does not have hits. Two values are possible, '0' if the query has hits, '1' if the query does not have any hit
- [numFound] : the number of documents found for the query
- [numClicks] : the number of clicks on the found documents
- [QTime] : the query time in milliseconds. This value is directly provided by Solr
- [positionClickTot] : represents the sum of the positions of the documents clicked.
For example, if the user clicks on the first result and the third, the positionClickTot will be 1+3=4
The positions are absolute and are not base on the page. If there are 10 results by page and the user clicks on the first link of the second page, the position number will be 11 - [click] : like [noHits], it is a boolean value where '0' indicates that the user did not click on any result, and '1' indicates that the user has clicked at least on one result.
- [history] : keep track of the user behaviour. it represents a list of user "actions" : [user_action1,user_action2,...]
A user action is formatted as follow: "query"///"facet_used"///"num_doc_found"///"query_time"///"num_of_page"///"url"///"url_position"- "query" : the query performed
- "facet_used" : if the user has clicked on a facet, it is formatted like this : ("facet_field":"facet_value" )
For example, if you look at the second "user action" in the history of the example log : (extension:docx ), you can deduce that the user has clicked on the facet "docx" which is based on the field named "extension") - "num_doc_found" : number of docs returned by the query
- "query_time" : the query time measured by Solr
- "num_of_page" : the number of the page where was the user
- "url" : the URL of the clicked document
- "url_position" : the position of the clicked document (first result = 1, second = 2, etc.). Remember that the position is absolute and based on all the available results.
- [url] : the clicked document URL. This value is only set if the log itself represents the click
...