Hello we are using solr beyong a httpd reverse proxy.
We'd like to mix up solr log information together with apache: * info coming from apache (user_track module to follow user over several session) etc. * solr info (nbhits ...) The idea is that we have all our logs at the same place with a common format. And we can make a global log analysis (apache normal + the solr part) On idea would be to be able to add nbhits into the responseHeader that apache can see and parse. Is that possible? I've trie to make my own public class JSONHeaderResponseWriter extends JSONResponseWriter {...} and implement write, adding: rsp.getResponseHeader().add("numFoundPIPO", numFound); But his will add my value to the json response header, not the servelt one. Is that possible with another method? Am i simply on the wrong route? thanks for the help Alex -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-mix-solr-query-info-into-the-apache-httpd-logging-reverseproxy-tp3498539p3498539.html Sent from the Solr - User mailing list archive at Nabble.com.