Skip navigation

IIS 4.0 Event Logging

Downloads
19680.zip

Track Web site use to keep your IIS ship headed in the right direction

Microsoft (Internet Information Server) uses log files to track information about events that occur when users access IIS Web sites and applications. Information such as the number of visitors to your site or application, the number of bytes sent and received, and the referring page is invaluable for Web managers, who can examine the data to discern trends and patterns.

IIS 4.0 has four types of log formats, and you can store log data in files or databases. Maintaining logs increases the overhead on your system, so you want to be sure you're capturing the information you need in the most efficient way. Let's look at some of the decisions you need to make about IIS 4.0 logs and walk through the process of creating them.

Log Formats
Table 1, page 77, describes the four types of log files you can use with IIS 4.0: the World Wide Web Consortium (W3C) Extended Log File format, the National Center for Supercomputing Applications (NCSA) Common Log File format, the Microsoft IIS Log File format, and the ODBC Logging format. The W3C Extended Log File format is the most popular because it's flexible. You can select only the properties you need to monitor for a particular Web site. However, the W3C format might also tempt you to log too many items. Remember that the more items you log, the more work IIS 4.0 must do and the more disk or database space the logs will occupy. Figure 1 shows the W3C format's list of extended properties, with the default properties selected.

The W3C format and the other standard format, NCSA Common Log File, are useful when you need to aggregate logs from many Web servers, some of which aren't running IIS. Your organization can run Web servers from various vendors, and if the servers support logs in a common format, any analysis tools that you purchase or create that work with that format can access the logs. For example, Sane Solutions' NetTracker can read log files and import them into a database for use with its analysis tools. You use the ODBC format when you want to log information directly to a database.

The NCSA Common Log File format, the Microsoft IIS Log File format, and the ODBC Logging format use the local IIS 4.0 server's time, but W3C logs use Greenwich Mean Time (GMT). Obviously, you need to know the time zone that your logs are using so that you aren't misled about the time at which logged activities and rollovers actually occur. I verified the time zones in Table 1 with my own tests after discovering that the IIS 4.0 documentation isn't reliable on this topic. For example, the documentation says that the Microsoft IIS Log File format rolls over at midnight GMT, but that isn't the case—it actually rolls over at midnight local time.

You can set logs to roll over on a daily, weekly, or monthly basis. Alternatively, you can set logs to roll over when they reach a certain size. To configure these settings, you use the log's General Properties page. To display this page, open Internet Service Manager (ISM) 4.0, click the server that contains the Web site on which you want to set log options, right-click the Web site, and select Properties. Click the Web Site tab, and click Properties beside the log format type.

IIS 4.0 names log files according to a particular format that contains a prefix that identifies the log format followed by the log starting date. Table 1 shows the prefixes for each log format. IIS 4.0 uses the longer prefixes for files that are closed by size and the two-character prefixes for files closed by date. For example, IIS 4.0 would give the name nc001013.log to an NCSA log file created according to a daily schedule and started on October 13, 2000. (For more information about log-file names, see "File Names for Logging" in the IIS 4.0 online documentation.)

File vs. Database
Perhaps the most important decision you need to make when setting up IIS 4.0 logging is whether to log to a disk file or a database. The Microsoft article "Internet Information Server Performance Logging to Disk vs. ODBC" (http://support.microsoft.com/support/kb/articles/q142/5/57.asp) discusses the performance implications of this decision. According to this article and to the IIS 4.0 documentation about log files, when logging to a file, IIS 4.0 caches the log data and writes it to disk in 64KB blocks. IIS 4.0 also flushes the cache when you stop the WWW service. You can increase the log buffer for fewer writes or decrease it for more up-to-date information in the log file. To change the cache size, add the LogFileBatchSize subkey (along with a value that specifies the desired cache size) to the HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\InetInfo\Parameters registry subkey.

When you use ODBC logging, each time an event occurs on IIS 4.0, the Web server writes log data to the SQL Server or other database you specified. This realtime logging causes IIS 4.0 to perform lots of insert operations to the log-file database and can overload the database server or become a bottleneck for IIS 4.0. The Microsoft Internet Information Server Resource Kit says ODBC logging "might not be a good idea for a busy server ... because it slows down the server and does not scale well under a high level of stress."

Thus, Microsoft reference materials seem to suggest that logging to a file performs better than logging to a database, right? Not so fast. I performed a test and found that IIS 4.0 writes log data to a file after each event. Contrary to what the reference materials say, IIS 4.0 doesn't cache data but rather writes data to the file as each event occurs—at least it does with the default settings. To perform a similar test, set up logging for a Web site, then access one page in the site two or three times. Open the log file, and look at the entries. You'll see an entry for each of your accesses.

(The aforementioned "Internet Information Server Performance Logging to Disk vs. ODBC" Microsoft article reports that problems can occur if you use active log files for realtime reporting. The "Interpreting Log Files" section of the IIS 4.0 online documentation says you can access the current log file only after stopping the W3C Service. However, I was able to use Notepad to access an open log file and use Windows Explorer to copy the log file.)

If IIS 4.0 writes log data each time an access occurs, it seems to be doing the same work in a file log operation as in a database log operation. Some databases might be faster than some file systems, and vice versa. You must test to determine whether a file or database works best in your situation. However, I suspect that in general, file operations are faster than database operations.

Another approach to putting log information in a database is to create a batch job that picks up closed log files after log rollovers. The batch job can import the log information into the database during off-hours, reducing the load on IIS 4.0 and the database during peak usage hours. If you use Microsoft SQL Server as your database, the Import Wizard makes setting up imports a breeze and log-file imports very quick.

In addition to producing logs that you must store somewhere, logging causes overhead for IIS 4.0 and for a disk system, whether you use file logging or database logging. The more data that you capture, the more work that IIS 4.0 and the file system must do. Choose your logging types and methods carefully to make sure you aren't logging more data than you need.

Logging to a File
By default, IIS 4.0 enables W3C logging and tracks the Time, Client IP Address, Method, URI Stem, and Http Status properties. To change logging settings for a Web site, perform the following steps:

  1. Open ISM.
  2. Click the server that contains the Web site on which you want to enable logging.
  3. Right click the Web site, and select Properties.
  4. Click the Web Site tab.
  5. On the Web Site tab, which Figure 2, page 80, shows, ensure that the Enable Logging check box is selected.
  6. Select a log-file format from the Active log format list.
  7. Click Properties next to the Active log format list.
  8. Change the property settings for the log, then return to the Web Site tab.

When you click OK to accept the changes, IIS 4.0 closes the current log file and opens a new log file with the new format.

By default, IIS 4.0 sends log information to a disk file. The Web server stores log files in the C:\winnt\system32\logfiles\w3svc1 folder for the default Web site, the C:\winnt\system32\logfiles\w3svc2 folder for the admin Web site, and so on for other Web sites you create.

You can use ISM to direct IIS 4.0 to send logs to a different folder. You might want to place log files on a fast disk that doesn't contain Web content. Moving the log files to a separate disk should improve performance because the log files won't contend with other content for access to the disk.

To change the log-file folder, use the DOS command prompt or Windows Explorer to create the new folder structure for the log files, then perform the following actions to direct the log files to the new folder:

  1. Return to the Web Site tab, which Figure 2 shows.
  2. Click Properties.
  3. Modify the Log file directory text to point to the new path. The path must be a physical path; a Uniform Naming Convention (UNC) path won't work. To specify parts of the path, you can use explicit folder names or environment variables that equate to folders. You'll use explicit folder names for most custom log-file folder settings because the log folder won't be under a Windows NT 4.0 system folder such as \system32. Use the Web site name in the path to make obvious which logs belong with which Web site. For instance, for a Web site named 32X, you might use the path \logs\32xproduction. If the 32X Web site is the fourth site you created on the IIS 4.0 server, IIS 4.0 will put 32X's logs in \logs\32xproduction\w3csvc4.
  4. Click OK.

After you complete these steps, IIS 4.0 will create log files in the new folder structure. The Web server won't move any existing log files.

Logging to a Database
Instead of sending the log information to a file, you can put the log in ODBC format and have IIS 4.0 send it to a database. For example, you could send logs directly to a SQL Server or Oracle database and use SQL and other analysis tools to directly analyze the data. You could have several servers logging to the same database.

To set up logging to SQL Server 6.5 or later, determine the database you're going to use. If you want to use a new database, open Enterprise Manager and create the database. Next, start Query Analyzer and log in to the SQL Server system on which the database resides. Select the log database.

The database must contain a table that has the correct format for the log data. IIS 4.0 includes an SQL script file (logtemp.sql), which Listing 1 shows, to create this table for you. If you've chosen the default installation settings for IIS 4.0, the script file is in the C:\winnt\system32\inetsrv directory. Run the script to create the log table. The name of the log table that the script creates is Inetlog.

Next, create an ODBC system data source on the IIS 4.0 system or systems that will be logging to the database you just configured and point the data source to the new database. Go to the Control Panel ODBC applet. Click the System DSN tab, click Add, and select the SQL Server ODBC driver. Enter a Data Source Name (DSN) and a description, then enter the server name. Follow the driver prompts to select the database and test the data source.

To put the log in ODBC format, open the Web Site tab and select ODBC Logging for the log type. Click Properties to access the ODBC logging options. Figure 3 shows the default settings. Change the DSN to the one you just created or an existing one. You also need to change the table name to Inetlog, the name of the table that logtemp.sql creates. Enter a username and password for the table, and click OK.

If you've set up everything correctly, IIS 4.0 will now send logs to your database. If logs don't arrive there, check the event logs for errors. Figure 4 shows a log error that occurred because of a mismatch between a log table name and database table name.

The Microsoft article "IIS Logging to SQL Server Fails w/ Blank Username and Password" (http://support.microsoft.com/support/kb/articles/q149/3/98.asp) points out problems that can occur when the SQL Server Login Security Mode is set to the Windows NT Integrated option in IIS 4.0. Check with your database administrator to make sure this option is set to Mixed instead.

Parting Thoughts
You have many options when setting up logging and when analyzing log data. Make sure you choose carefully when you decide how much data to log and what format to use. Also make sure you have the most recent service pack for NT 4.0 installed. Service Pack 4 (SP4) fixes problems with unwanted flushes of log data to log files, and later service packs probably update other log features.

The NT 4.0 Option Pack, which includes IIS 4.0, also includes Site Server Express, which you can use to analyze log files. You can also use third-party tools from many vendors to analyze IIS 4.0 log files, and you can use SQL or report writers such as Seagate Software's Seagate Crystal Reports to query and report on log data in an SQL database.

Hide comments

Comments

  • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
Publish