: The one thing most people (ie product managers) want to see is the : number of times that users get 0 hits for a query but that doesn't seem : to be logged anywhere in solr that's easily accessible in log files. Am : I missing something very obvious or should we try and fix this somehow?
it's the kind of information the core Solr application can't log because it doesn't know, but individual request handlers which focus on a "main" result set (like StandardRequestHandler and DisMaxRequestHandler) certainly could certinaly log that at an INFO level ... but it might make sense forthem to use a customer logger name so it can be confiured seperately from other "code" related log messages, ie... Logger statsLog = Logger.getLogger(this.getClass().getName() + ".STATS") -Hoss