Hi,
Does anyone know of any tools that I can use to analyze the CollabConsole.txt log file for statistics data?
Thanks.
Eunice
There is a tool available for analyzing the CollabConsole.txt log file for statistics data written by our escalations team. (cs_processlog.py) which is available to customers who request it. (Please open a VOLSS ticket if you need this tool). It generates CSV files containing a few different metrics. Some of the metrics gathered, require certain debug options enabled (example: “orm.memprobe.on=true” for the free memory report). It should run under almost any jython installation (not tested with jython version 3) or CollabSH (collab tools installation). It does parse everything into memory, so increase your heap size to account for the sizes of your logs. We parsed all the logs for a 3-node collab cluster generated over the course of 4 days with a 2GB heap To run: 1) At the jython interpreter line, enter (assumes that the script is in the working directory): a. execfile(“cs_processlogs.py” 2) Answer the log file path question and the file pattern question. 3) Wait.
4) The result will be a handful of CSV files written to the log file path you provided. Jython can be downloaded http://www.jython.org/archive/21/download.html – for Windows, install by double-clicking on the jar You can increase the heap in <Jython_Root>\jython.bat: set _JAVA_MEM=-Xmx512
Thanks for your quick response. I will open up a ticket to get this tool.