Re: solr audit logging

2016-12-07 Thread Jeff Courtade
Thanks very much every one. They will probably pursue custom code to see if they can get this data and log it. J -- Thanks, Jeff Courtade M: 240.507.6116 On Tue, Dec 6, 2016 at 7:07 PM, John Bickerstaff wrote: > You know - if I had to build this, I would consider

Re: solr audit logging

2016-12-06 Thread Jeff Courtade
They wanted out of the box solutions. This is what I found too that it would be custom. i was hoping i just was not finding something obvious. Jeff Courtade M: 240.507.6116 On Dec 6, 2016 7:07 PM, "John Bickerstaff" wrote: > You know - if I had to build this, I

Re: solr audit logging

2016-12-06 Thread John Bickerstaff
You know - if I had to build this, I would consider slurping up the relevant log entries (if they exist) and feeding them to Kafka - then your people who want to analyze what happened can get those entries again and again (Think of Kafka kind of like a persistent messaging store that can store log

Re: solr audit logging

2016-12-06 Thread John Bickerstaff
If you can identify currently-logged messages that give you what you need (even if you have to modify or process them afterwards) you can easily make a custom log4j config that grabs ONLY what you want and dumps it into a separate file... I'm pretty sure I've seen all the request coming through

Re: solr audit logging

2016-12-06 Thread Alexandre Rafalovitch
There is also Jetty level access log which shows the requests, though it may not show the HTTP PUT bodies. Finally, various online monitoring services probably have agents that integrate with Solr to show what's happening. Usually costs money though. Regards, Alex.

Re: solr audit logging

2016-12-06 Thread Jeff Courtade
Thanks very much the trace idea is a brilliant way to dig into it. Did not occur to me. I had another coworker suggest the custom http://lucene.apache.org/solr/6_3_0/solr-core/org/apache/solr/update/processor/LogUpdateProcessorFactory.html this is beyond my litmited abilites. I will see what

Re: solr audit logging

2016-12-06 Thread Alexandre Rafalovitch
You could turn the trace mode for everything in the Admin UI (under logs/levels) and see if any of the existing information is sufficient for your needs. If yes, then you change log level in the configuration just for that class/element. Alternatively, you could do a custom UpdateRequestProcessor

solr audit logging

2016-12-06 Thread Jeff Courtade
Hello, Could someone point me in the correct direction for this? I am being asked to setup an "audit.log" or audit trail for writes and changes to documents. i do not know where to begin something like this. I am guessing it is just configuration of log4j but that is about as far as i can