Creating Daily Log Files in FusionReactor
FusionReactor captures a lot of very useful data into log files. These log files can be used to analyze a server in great detail. FusionReactor's logging mechanmism allows you to decide how many log files you want to keep and how big each log file should be but it doesn't allow you to rotate the log files every day.
It would be great to rotate the log files every day so that we can keep a record for as long as we want instead of losing data when the log files rotate automatically.
Using FRAPI (FusionReactor's API) this is easy to achieve.
Requirements
FusionReactor 3.0.1+
The Article
FusionReactor captures data about Requests, JDBC Requests, Resources, CrashProtection actions and details about itself into log files. These log files are typically placed under a log folder that can for each instance of FusionReactor. On a Windows installation the log folder might by for example:
C:FusionReactorinstancecoldfusion.cfmx9.INT000Blog
About FRAPI
FRAPI is a powerful and easy to use API that allows you to take control of FusionReactor programatically. Using FRAPI you can change the running configuration of FusionReactor.
Here's how to instantiate the FRAPI interface in CFML. Once we have FRAPI available we are able to read this FusionReactor's configuration:
<cftry> <cfset frapi = createObject("java", "com.intergral.fusionreactor.api.FRAPI").getInstance()> <cfset config = frapi.getRunningConfiguration()> <cfdump var="#config#"> <cfcatch> <!--- FRAPI isn't available so FusionReactor probably isn't installed ---> </cfcatch> </cftry>
Note that we always wrap FRAPI calls in a TRY/CATCH block. The reason for this is that FusionReactor may not be installed on every computer that you run the code on. The TRY/CATCH blocks will make sure that FRAPI calls will have no influence on your code even if FusionReactor isn't installed.
To try FRAPI, create a "frapiconfig.cfm" file with the CFML code above and run the page on a system that has FusionReactor installed. After the page has completed you should see a dump of FusionReactors configuration for this instance.
Once we have the configuration, we can change it and tell FusionReactor to update very easily like this:
<cfset config.setValue("logfile", "#install_location#/instance/#instance_name#/log/#datetime#/reactor.log")> <cfset frapi.setRunningConfiguration(config)>
FRAPI.CFM
<cftry> <cfset frapi = createObject("java", "com.intergral.fusionreactor.api.FRAPI").getInstance()> <cfsavecontent variable="debugData"><cfinclude template="classic.cfm"></cfsavecontent> <cfset frapi.trace( debugData )> <cfcatch> <!--- FRAPI isn't available so FusionReactor probably isn't installed ---> </cfcatch> </cftry>
Notes
- Log File Sizes
Some of FusionReactor's log files can fill very quickly. This is especially true of the JDBC log files. You need to take this into consideration when you set the log file size(s). As a counter point you have to be aware that using very large log files sizes and rotating the log files every day can very quickly use up lots of disk space. Please take care when setting the log file sizes and consider archiving or removing log files based upon there age.
- Log File Count
FusionReactor lets you set the number of log files you want to keep for each log type. It's tempting to set this to a large number so that FusionReactor doesn't lose any information but you should consider that the more log files FusionReactor has to manage and rotate, the slower the log file rotate will be. I would not advise you to set the log file count higher than 20 log files. It is more advisable to balance the number of log files and the log file size. For example, of you set the log file count to 10 and the log file size to 20480 (log file size is set in KBytes) then you would create a maximum of 200MBytes of log data (for the specific log).
Fast Track
- Copy the frapi.rotatelogdirectoy.cfm file linked to this article to a folder where you run ColdFusion (for example): <coldfusion folder>/wwwroot/fusionreactor
- Create a scheduled task to run this page once per day at 00:00:00 midnight
Summary
By rotating FusionReactor's log files daily you can keep log files for as long as you want and can prevent you from losing this valuable data when FusionReactor rotates it's log files automatically when the size of the file has been reached.
Issue Details
Type: | DevNet |
---|---|
Issue Number: | FRS-237 |
Components: | Logging |
Environment: | |
Resolution: | Fixed |
Last Updated: | 06/Nov/09 6:51 PM |
Affects Version: | 2.0, 2.0.3, 2.0.4, 3.0, 3.0.1, 3.5 |
Fixed Version: | 3.0.1, 3.5 |
Server: | |
Platform: | Windows XP, Windows 2000, Windows 2003, Linux, MacOS, Solaris, Windows Vista, Windows x64, AIX, Windows 7, Windows 2008 |
Related Issues: |
FRS-232: Capturing ColdFusion’s Debug Output in FusionReactor |